8 lines
198 B
Nix
8 lines
198 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
boot.plymouth = {
|
|
enable = true;
|
|
themePackages = [ (pkgs.adi1090x-plymouth-themes.override { selected_themes = [ "owl" ]; }) ];
|
|
theme = lib.mkForce "owl";
|
|
};
|
|
}
|