1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(systemd-boot): only display last 5 generations

This commit is contained in:
Kierán Meinhardt
2019-09-24 16:46:43 +02:00
parent 24726e02f0
commit 0b2274122d
3 changed files with 16 additions and 3 deletions

View File

@@ -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 = [

View File

@@ -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";

View File

@@ -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";