NixOSDots/modules/nixos/bootloader.nix

17 lines
249 B
Nix

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