diff options
author | sils <sils@sils.li> | 2023-01-03 19:13:19 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-01-03 19:13:19 +0100 |
commit | 066fc85712d2155c525f5c54aecfbf42bd628998 (patch) | |
tree | 9a28e9b04344a0128ea7f28ea6d579ebc2ed42cc /hardware | |
parent | change restic-cache to /srv bc of temp-root (diff) | |
download | nix-config-066fc85712d2155c525f5c54aecfbf42bd628998.tar.gz nix-config-066fc85712d2155c525f5c54aecfbf42bd628998.zip |
remove unnecessary boot-entries
Diffstat (limited to 'hardware')
-rw-r--r-- | hardware/basesystem.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hardware/basesystem.nix b/hardware/basesystem.nix index e2b6ca7..1a9b7e1 100644 --- a/hardware/basesystem.nix +++ b/hardware/basesystem.nix @@ -15,7 +15,10 @@ extraModulePackages = [ ]; kernelPackages = pkgs.linuxPackages_latest; loader = { - systemd-boot.enable = true; + systemd-boot = { + enable = true; + configurationLimit = 3; + }; efi.canTouchEfiVariables = true; }; }; |