2024-02-04 18:21:53 +05:30
|
|
|
{ lib, pkgs, ... }: {
|
|
|
|
boot.plymouth = let theme = "angular"; 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
|
|
|
};
|
|
|
|
}
|