Setting catppuccin grub theme

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”;
};

fixed it :slight_smile: i could have sworn on my life that i tried this already but i guess i wrote the wrong package name either way im happy it works

boot = {
loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
device = “nodev”;
efiSupport = true;
gfxmodeEfi = “2560x1440”;
theme = pkgs.catppuccin-grub;
};
};
};