dots/modules/desktop/login/plymouth.nix
2025-08-21 22:10:42 +10:00

20 lines
332 B
Nix

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