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

13 lines
212 B
Nix
Raw Normal View History

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