nix-configs/modules/plymouth.nix
2024-09-05 19:08:29 -04:00

8 lines
204 B
Nix

{ pkgs, lib, ... }:
{
boot.plymouth = {
enable = true;
themePackages = with pkgs; [ (adi1090x-plymouth-themes.override { selected_themes = [ "owl" ]; }) ];
theme = lib.mkForce "owl";
};
}