NixOSDots/modules/nixos/bootloader.nix
2026-01-22 15:56:13 +01:00

18 lines
270 B
Nix

{
boot = {
loader = {
grub = {
enable = false;
device = "nodev";
};
systemd-boot = {
enable = true;
configurationLimit = 2;
};
efi = {
canTouchEfiVariables = true;
};
};
};
}