diff --git a/systems/homeros/configuration.nix b/systems/homeros/configuration.nix index d79ac05..2930e23 100644 --- a/systems/homeros/configuration.nix +++ b/systems/homeros/configuration.nix @@ -14,7 +14,11 @@ promptColours.success = "green"; }; - boot.loader.systemd-boot.enable = true; + boot.loader.systemd-boot = { + enable = true; + configurationLimit = 5; + }; + boot.loader.efi.canTouchEfiVariables = true; boot.kernelParams = [ diff --git a/systems/scardanelli/configuration.nix b/systems/scardanelli/configuration.nix index c60f4e0..af2e52f 100644 --- a/systems/scardanelli/configuration.nix +++ b/systems/scardanelli/configuration.nix @@ -18,7 +18,11 @@ in { promptColours.success = "yellow"; }; - boot.loader.systemd-boot.enable = true; + boot.loader.systemd-boot = { + enable = true; + configurationLimit = 5; + }; + boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "scardanelli"; diff --git a/systems/wilde/configuration.nix b/systems/wilde/configuration.nix index 08fab38..39376c6 100644 --- a/systems/wilde/configuration.nix +++ b/systems/wilde/configuration.nix @@ -20,7 +20,12 @@ virtualisation.docker.enable = lib.mkForce false; - boot.loader.systemd-boot.enable = true; + boot.loader.systemd-boot = { + enable = true; + configurationLimit = 5; + consoleMode = "max"; + }; + boot.loader.efi.canTouchEfiVariables = true; networking.hostName = "wilde";