Disable hiding bootup messages, flake update.

This commit is contained in:
jay
2025-07-17 05:11:48 -04:00
parent f40f23a8b3
commit 956c23e606
2 changed files with 25 additions and 25 deletions

View File

@@ -4,33 +4,33 @@
];
boot = {
initrd.verbose = false;
#initrd.verbose = false;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_xanmod_stable;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rc.systemd.show_status=auto"
];
#kernelParams = [
#"quiet"
#"splash"
#"boot.shell_on_fail"
#"udev.log_priority=3"
#"rc.systemd.show_status=auto"
#];
extraModprobeConfig = ''
options bluetooth enable_ecred=1
'';
plymouth = {
enable = true;
theme = lib.mkForce "glitch";
themePackages = [
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; })
];
};
consoleLogLevel = 3;
#plymouth = {
# enable = true;
# theme = lib.mkForce "glitch";
# themePackages = [
# (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "glitch" ]; })
# ];
#};
#consoleLogLevel = 3;
loader.timeout = 3;
};
}