14 lines
240 B
Nix
14 lines
240 B
Nix
|
{ pkgs, ...}:
|
||
|
{
|
||
|
boot = {
|
||
|
plymouth = {
|
||
|
enable = true;
|
||
|
theme = "rings";
|
||
|
themePackages = with pkgs; [
|
||
|
(adil1090x-plymouth-themes.overrride {
|
||
|
selected_themes = [ "rings" ];
|
||
|
})
|
||
|
|
||
|
];
|
||
|
}
|