configuration.nix/hosts/skipper/plymouth.nix

9 lines
215 B
Nix

{ pkgs, ... }: {
boot.plymouth = let theme = "rog_2"; in {
enable = true;
themePackages = [
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
];
inherit theme;
};
}