nixos-configs/nixosModules/plymouth/default.nix

35 lines
532 B
Nix
Raw Normal View History

{
2024-07-10 20:38:03 -04:00
config,
lib,
...
2024-07-10 20:38:03 -04:00
}: let
inherit (lib) mkIf;
2024-07-10 20:38:03 -04:00
cfg = config.boot.plymouth;
in {
config.boot = mkIf cfg.enable {
2023-10-15 17:40:57 -04:00
initrd = {
verbose = false;
systemd.enable = true;
};
consoleLogLevel = 0;
2023-10-15 17:40:57 -04:00
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"i915.fastboot=1"
"loglevel=3"
"rd.systemd.show_status=false"
"rd.udev.log_level=3"
"udev.log_priority=3"
];
2024-07-10 21:27:29 -04:00
loader.timeout = 0;
2023-10-15 17:40:57 -04:00
};
# For accurate stack trace
_file = ./default.nix;
2023-10-15 17:40:57 -04:00
}