Remove quietboot support

somehow didn't really work, boot just failed and i had to fix it with a rescue media
This commit is contained in:
GHOSCHT 2024-01-07 15:42:46 +01:00
parent fc804cd443
commit 14f7c99c30
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82

View file

@ -1,33 +0,0 @@
{
pkgs,
config,
...
}: {
console = {
useXkbConfig = true;
earlySetup = false;
};
boot = {
plymouth = {
enable = true;
theme = "spinner-monochrome";
themePackages = [
(pkgs.plymouth-spinner-monochrome.override {
inherit (config.boot.plymouth) logo;
})
];
};
loader.timeout = 0;
kernelParams = [
"quiet"
"loglevel=3"
"systemd.show_status=auto"
"udev.log_level=3"
"rd.udev.log_level=3"
"vt.global_cursor_default=0"
];
consoleLogLevel = 0;
initrd.verbose = false;
};
}