nixos-configs/modules/plymouth.nix

42 lines
708 B
Nix
Raw Normal View History

{
2024-07-10 20:38:03 -04:00
config,
lib,
pkgs,
self,
...
2024-07-10 20:38:03 -04:00
}: let
inherit (lib) hasAttr mkIf optionals;
cfg = config.boot.plymouth;
in {
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;
2024-07-10 20:38:03 -04:00
plymouth.themePackages =
[
self.legacyPackages.${pkgs.system}.dracula.plymouth
]
++ optionals (hasAttr "steamdeck-hw-theme" pkgs) [
pkgs.steamdeck-hw-theme
];
2023-10-15 17:40:57 -04:00
};
}