nix-configs/modules/plymouth.nix

7 lines
203 B
Nix

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