configuration.nix/hosts/skipper/plymouth.nix
2023-04-26 22:57:06 +05:30

12 lines
214 B
Nix

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