Files
cyper-nix/nixos/plymouth.nix
T
DerGrumpf 2505485996
CI / check (push) Failing after 2m41s
Aligned flake with workflow
2026-06-22 22:16:53 +02:00

21 lines
346 B
Nix

{ lib, ... }:
{
boot = {
plymouth = {
enable = true;
};
# Enable "Silent boot"
consoleLogLevel = 3;
initrd.verbose = false;
kernelParams = [
"quiet"
"splash"
"boot.shell_on_fail"
"udev.log_priority=3"
"rd.systemd.show_status=auto"
];
loader.timeout = lib.mkDefault 0;
};
}