nix-configs/modules/plymouth.nix

8 lines
143 B
Nix
Raw Normal View History

2024-05-31 20:51:33 -04:00
{ pkgs, ... }: {
2024-05-31 20:50:40 -04:00
boot.plymouth = {
enable = true;
themePackages = with pkgs; [ adi1090x-plymouth-themes ];
theme = "owl";
};
2024-05-31 20:51:33 -04:00
}