nix-configs/nixos-modules/plymouth.nix

9 lines
198 B
Nix
Raw Normal View History

2024-09-05 19:08:29 -04:00
{ pkgs, lib, ... }:
{
2024-05-31 20:50:40 -04:00
boot.plymouth = {
enable = true;
2024-09-21 21:50:25 -04:00
themePackages = [ (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "owl" ]; }) ];
2024-05-31 21:59:03 -04:00
theme = lib.mkForce "owl";
2024-05-31 20:50:40 -04:00
};
2024-05-31 20:51:33 -04:00
}