13 lines
207 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ ... }: {
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
}