Refine bootloader and boot splash configurations

Configure the Limine bootloader to manage up to 10 generations and enable `canTouchEfiVariables` for improved EFI system integration.
Additionally, set Plymouth's `DeviceScale` to 2 to ensure the boot splash screen displays correctly on high-DPI monitors.
This commit is contained in:
2026-06-14 16:07:13 +02:00
parent db4c0e1320
commit ddfa93ddda
2 changed files with 13 additions and 3 deletions
+7 -1
View File
@@ -9,7 +9,13 @@ in
};
config = mkIf cfg.enable {
boot.loader.limine.enable = true;
boot.loader = {
limine = {
enable = true;
maxGenerations = 10;
};
efi.canTouchEfiVariables = true;
};
};
}
+6 -2
View File
@@ -17,7 +17,11 @@ in
"boot.shell_on_fail"
];
boot.plymouth.enable = true;
boot.plymouth = {
enable = true;
extraConfig = ''
DeviceScale=2
'';
};
};
}