systemd-boot

This commit is contained in:
Joseph Hanson 2024-07-10 15:12:00 -05:00
parent c4b7824690
commit 5d3d3709da
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -10,23 +10,16 @@
supportedFilesystems = [ "nfs" ]; supportedFilesystems = [ "nfs" ];
loader = { loader = {
grub = { systemd-boot.enable = true;
enable = true; efi = {
zfsSupport = true; canTouchEfiVariables = true;
device = "nodev";
mirroredBoots = [
{ devices = ["nodev"]; path = "/boot";}
];
}; };
# efi = {
# canTouchEfiVariables = true;
# };
}; };
}; };
networking = { networking = {
useDHCP = lib.mkDefault true; useDHCP = lib.mkDefault true;
networkmanager.enable = true;
}; };
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
} }