nix/nixos/common/modules/plymouth.nix

7 lines
238 B
Nix
Raw Normal View History

2023-09-22 12:45:23 +02:00
{ pkgs, config, ... }: {
# Plymouth splash screen
boot.plymouth.enable = true;
# https://github.com/adi1090x/plymouth-themes
boot.plymouth.theme = "red_loader";
boot.plymouth.themePackages = [ pkgs.adi1090x-plymouth-themes ];
}