could anyone help me with setting up grub catppuccin theme i have a working config for another theme but for the life of me i cant get it to work for catppuccin
the config:
boot = {
loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
device = “nodev”;
efiSupport = true;
};
};
initrd.luks.devices.encryption.device = “/dev/disk/by-uuid/UUID”;
};
boot.loader.grub.theme = pkgs.stdenv.mkDerivation {
pname = “distro-grub-themes”;
version = “3.1”;
src = pkgs.fetchFromGitHub {
owner = “AdisonCavani”;
repo = “distro-grub-themes”;
rev = “v3.1”;
hash = “sha256-ZcoGbbOMDDwjLhsvs77C7G7vINQnprdfI37a9ccrmPs=”;
};
installPhase = “cp -r customize/nixos $out”;
};