nanuqsaurus/modules/system/boot-efi.nix

19 lines
255 B
Nix
Raw Normal View History

{ lib, ... }:
{
boot.supportedFilesystems = [
"btrfs"
"ext4"
"vfat"
"xfs"
];
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = lib.mkDefault 10;
};
efi.canTouchEfiVariables = true;
};
}