2023-11-08 17:15:32 +01:00

13 lines
207 B
Nix

{ ... }: {
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
}