nix-configs/modules/plymouth.nix

9 lines
210 B
Nix
Raw Normal View History

2024-05-31 21:59:03 -04:00
{ pkgs, lib, ... }: {
2024-05-31 20:50:40 -04:00
boot.plymouth = {
enable = true;
2024-07-30 09:11:17 -04:00
themePackages = with pkgs;
[ (adi1090x-plymouth-themes.override { selected_themes = [ "owl" ]; }) ];
2024-05-31 21:59:03 -04:00
theme = lib.mkForce "owl";
2024-05-31 20:50:40 -04:00
};
2024-05-31 20:51:33 -04:00
}