feat(grub): Catppuccin -> Rose Pine

This commit is contained in:
punkfairie 2024-10-20 16:42:57 -07:00
parent 05711392f8
commit 0345af8328
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 12 additions and 23 deletions

View file

@ -100,13 +100,13 @@
"type": "Git",
"repository": {
"type": "GitHub",
"owner": "catppuccin",
"owner": "rose-pine",
"repo": "grub"
},
"branch": "main",
"revision": "b8e617076daed2b38292af9e14c0a22e2c2bd659",
"url": "https://github.com/catppuccin/grub/archive/b8e617076daed2b38292af9e14c0a22e2c2bd659.tar.gz",
"hash": "0sx08xc9zd3ys9bgy7z57gngamgh8gm2623s3xbx87d46ami9z36"
"revision": "4a26bd253f4aecb6343e70a98da2e12043739f5a",
"url": "https://github.com/rose-pine/grub/archive/4a26bd253f4aecb6343e70a98da2e12043739f5a.tar.gz",
"hash": "0virkip3zw6z8r05d7767iymyrs7nl7acznskfgivkqgzmzl1ql4"
},
"helix": {
"type": "Git",
@ -386,5 +386,4 @@
}
},
"version": 3
}
}

View file

@ -1,26 +1,16 @@
{
config,
lib,
pkgs,
...
}:
let
inherit (config.catppuccin) sources;
cfg = config.boot.loader.grub.catppuccin;
enable = cfg.enable && config.boot.loader.grub.enable;
}: let
inherit (config.rose-pine) sources;
# TODO @getchoo: upstream this in nixpkgs maybe? idk if they have grub themes
theme = pkgs.runCommand "catppuccin-grub-theme" { } ''
mkdir -p "$out"
cp -r ${sources.grub}/src/catppuccin-${cfg.flavor}-grub-theme/* "$out"/
'';
in
{
options.boot.loader.grub.catppuccin = lib.ctp.mkCatppuccinOpt { name = "grub"; };
cfg = config.boot.loader.grub.rose-pine;
enable = cfg.enable && config.boot.loader.grub.enable;
in {
options.boot.loader.grub.rose-pine = lib.rp.mkRosePineOpt {name = "grub";};
config.boot.loader.grub = lib.mkIf enable {
font = "${theme}/font.pf2";
splashImage = "${theme}/background.png";
inherit theme;
theme = sources.grub;
};
}