This commit is contained in:
waveringana 2025-07-07 02:53:05 -04:00
parent 6559e6f1c7
commit 0c0e511e66
3 changed files with 59 additions and 7 deletions

View file

@ -11,14 +11,25 @@
../../host-secrets.nix
];
boot = {
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
initrd.systemd.enable = true;
};
system.stateVersion = "24.11";
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
systemd.targets.multi-user.enable = true;
networking = {
hostName = "baal";
hostId = "193mdalf";
hostId = "aaaaaaaa";
networkmanager.enable = true;
};
@ -26,4 +37,6 @@
enable = true;
enableOnBoot = true;
};
documentation.enable = false;
}