nix-conf/modules/nixos/bootloader/default.nix

12 lines
212 B
Nix

_: {
boot = {
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
supportedFilesystems = ["ntfs"];
};
}