configuration.nix/hosts/skipper/plymouth.nix

10 lines
215 B
Nix
Raw Normal View History

2023-11-04 16:12:45 +05:30
{ pkgs, ... }: {
2024-01-04 21:51:19 +05:30
boot.plymouth = let theme = "rog_2"; in {
2023-03-15 22:11:59 +05:30
enable = true;
2023-03-25 22:10:09 +05:30
themePackages = [
2024-01-04 21:51:19 +05:30
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
2023-03-25 22:10:09 +05:30
];
2024-01-04 21:51:19 +05:30
inherit theme;
2023-03-15 22:11:59 +05:30
};
}