aboutsummaryrefslogtreecommitdiff
path: root/modules/system/plymouth.nix
blob: 0ac2b531da64e5571bd0804d61afe433f454428f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  flake.modules.nixos.plymouth =
    { pkgs, ... }:
    {
      boot = {
        # Show password prompt for encrypted root
        initrd.systemd.enable = true;
        kernelParams = [ "quiet" ];
        loader.systemd-boot.consoleMode = "max";
        plymouth = {
          enable = true;
          theme = "breeze";
          themePackages = with pkgs; [
            kdePackages.breeze-plymouth
          ];
        };
      };
    };
}