configuration.nix/hosts/skipper/plymouth.nix
2023-05-20 21:14:54 +05:30

12 lines
214 B
Nix

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