configuration.nix/hosts/skipper/plymouth.nix
2023-08-24 00:10:34 +05:30

12 lines
212 B
Nix

{pkgs, ...}: {
boot.plymouth = {
enable = true;
themePackages = [
(pkgs.adi1090x-plymouth.override {
pack = "pack_3";
theme = "owl";
})
];
theme = "adi1090x";
};
}