Switch to systemd-boot

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2023-12-25 22:59:17 -05:00
parent e1b29e0cd3
commit 9b118b0e7c

View File

@ -60,15 +60,18 @@ in
canTouchEfiVariables = false;
};
generationsDir.copyKernels = true;
boot.loader.systemd-boot.enable = true;
/* disable grub support
grub = {
enable = true;
copyKernels = true;
zfsSupport = lib.mkIf (cfg.filesystem == "zfs") true;
efiSupport = true;
efiInstallAsRemovable = true;
fsIdentifier = "uuid";
enableCryptodisk = lib.mkIf cfg.fullDiskEncryption true;
enable = true;
copyKernels = true;
zfsSupport = lib.mkIf (cfg.filesystem == "zfs") true;
efiSupport = true;
efiInstallAsRemovable = true;
fsIdentifier = "uuid";
enableCryptodisk = lib.mkIf cfg.fullDiskEncryption true;
};
*/
};
};
}
}