limit systemd-boot configurations to 5
This commit is contained in:
parent
1a1bd76d8b
commit
ebf762e296
2 changed files with 3 additions and 2 deletions
|
@ -7,9 +7,9 @@
|
|||
];
|
||||
boot.supportedFilesystems = [ "zfs" ];
|
||||
# Oldest system I have is skylake-based
|
||||
nixpkgs.localSystem = {
|
||||
/*nixpkgs.localSystem = {
|
||||
gcc.arch = "skylake";
|
||||
gcc.tune = "skylake";
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
};*/
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.systemd-boot.configurationLimit = 5;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue