nixos-configs/modules/plymouth.nix
matt1432 a51db7b00f
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: move dracula from common overlays to pkgs
2024-06-08 23:40:44 -04:00

32 lines
510 B
Nix

{
pkgs,
self,
...
}: {
boot = {
initrd = {
verbose = false;
systemd.enable = true;
};
consoleLogLevel = 0;
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;
themePackages = [self.packages.${pkgs.system}.dracula.plymouth];
theme = "dracula";
};
};
}