nix-configs/nixos-modules/plymouth.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";
};
}