nix-configs/modules/plymouth.nix
2024-07-30 09:11:17 -04:00

8 lines
210 B
Nix

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