Compare commits

...

2 Commits

Author SHA1 Message Date
Zynh Ludwig 8be91d56ee trying to fix plymouth 2024-07-05 13:15:04 -07:00
Zynh Ludwig 054838677c instant bootloader 2024-07-05 13:14:29 -07:00
1 changed files with 6 additions and 3 deletions

View File

@ -16,8 +16,8 @@ in
''; '';
}; };
loaderTimeout = mkOption { loaderTimeout = mkOption {
default = 5; default = 0;
example = 0; example = 5;
description = '' description = ''
The timeout for the bootloader select screen The timeout for the bootloader select screen
''; '';
@ -36,7 +36,10 @@ in
]; ];
}; };
consoleLogLevel = 0; consoleLogLevel = 0;
initrd.verbose = false; initrd = {
verbose = false;
systemd.enable = true;
};
kernelParams = [ kernelParams = [
"quiet" "quiet"
"splash" "splash"