9 lines
248 B
Nix
9 lines
248 B
Nix
{ lib, pkgs, ... }: {
|
|
boot.plymouth = let theme = "flame"; in {
|
|
enable = true;
|
|
themePackages = lib.mkDefault [
|
|
(pkgs.adi1090x-plymouth-themes.override { selected_themes = [ theme ]; })
|
|
];
|
|
theme = lib.mkDefault theme;
|
|
};
|
|
}
|