NixOSDots/modules/nixos/bootloader.nix
2026-01-22 15:42:43 +01:00

16 lines
220 B
Nix

{
boot = {
loader = {
grub = {
enable = false;
};
systemd-boot = {
enable = true;
};
efi = {
canTouchEfiVariables = true;
};
};
};
}