configuration.nix/hosts/skipper/plymouth.nix
2024-06-21 11:15:57 +05:30

9 lines
248 B
Nix

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