cfg/mod/boot.nix
2025-03-01 18:19:19 +01:00

10 lines
No EOL
162 B
Nix

{ ... }: {
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
}