configuration.nix/hosts/skipper/boot/plymouth.nix

10 lines
248 B
Nix
Raw Permalink Normal View History

2024-02-04 18:21:53 +05:30
{ lib, pkgs, ... }: {
2024-06-21 11:15:57 +05:30
boot.plymouth = let theme = "flame"; in {
2023-03-15 22:11:59 +05:30
enable = true;
2024-02-04 18:21:53 +05:30
themePackages = lib.mkDefault [
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-02-04 18:21:53 +05:30
theme = lib.mkDefault theme;
2023-03-15 22:11:59 +05:30
};
}