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