NixOS-Configs/hosts/fred/default.nix
2026-05-20 08:04:16 -05:00

22 lines
555 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
../templates/server.nix
./hardware-configuration.nix
./docker.nix
];
networking.hostName = "fred";
variables.address = "100.72.236.170";
# boot = {
# binfmt.emulatedSystems = lib.optionals (pkgs.stdenv.hostPlatform.system != "aarch64-linux") [ "aarch64-linux" ];
# loader = {
# systemd-boot = {enable = true;};
# efi = {
# canTouchEfiVariables = true;
# efiSysMountPoint = "/boot";
# };
# };
# };
primary.enable = true;
}