From ba4461c6b4a281ab966586ca3212ea7b48e3dfae Mon Sep 17 00:00:00 2001 From: William Date: Tue, 12 Dec 2023 17:16:07 -0300 Subject: [PATCH] plymouth theme --- hosts/desktops/common/boot.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/desktops/common/boot.nix b/hosts/desktops/common/boot.nix index 8e75028..61d66c8 100644 --- a/hosts/desktops/common/boot.nix +++ b/hosts/desktops/common/boot.nix @@ -2,7 +2,11 @@ { boot = { - plymouth.enable = true; + plymouth = { + enable = true; + themePackages = with pkgs; [ nixos-bgrt-plymouth ]; + theme = "nixos-bgrt"; + }; initrd.systemd.enable = true; supportedFilesystems = [ "ntfs" ]; loader.efi.efiSysMountPoint = "/boot/efi";