nixos-configs/modules/plymouth.nix

28 lines
469 B
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{pkgs, ...}: {
2023-10-15 17:40:57 -04:00
boot = {
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"
];
plymouth = {
enable = true;
2023-11-22 15:33:16 -05:00
themePackages = [pkgs.dracula-theme];
2023-10-15 17:40:57 -04:00
theme = "dracula";
};
};
}