Perception back to systemd boot

This commit is contained in:
Nathan McCarty 2023-04-08 23:36:46 -04:00
parent 6b72a5d5a7
commit 9efa381a4c
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 7 additions and 1 deletions

View File

@ -23,7 +23,7 @@
};
};
config = {
setupGrub = true;
setupGrub = false;
nix = {
autoUpdate = true;
autoGC = true;
@ -31,6 +31,12 @@
harden = false;
};
};
# Configure bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.kernelParams = [ "net.ifnames=0" ];
# Configure networking
networking = {
domain = "mccarty.io";