use pymouth themes from nixpkgs

This commit is contained in:
Adithya 2024-01-04 21:51:19 +05:30
parent eb5862f1c2
commit 15f1b515c3
Signed by: adtya
GPG key ID: 48FC9915FFD326D0

View file

@ -1,12 +1,9 @@
{ pkgs, ... }: {
boot.plymouth = {
boot.plymouth = let theme = "owl"; in {
enable = true;
themePackages = [
(pkgs.adi1090x-plymouth.override {
pack = "pack_3";
theme = "owl";
})
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
];
theme = "adi1090x";
inherit theme;
};
}