cp: follow root nixpkgs to fix copyparty eval error
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 17s

This commit is contained in:
Satria 2026-07-11 22:35:42 +07:00
commit 83d1f4086d
3 changed files with 8 additions and 5 deletions

View file

@ -1,8 +1,10 @@
{ pkgs, ctp-opt, ... }: {
{ lib, pkgs, ctp-opt, ... }: {
catppuccin.cursors.enable = false; # managed manually below to use the "Light" cursor variant
home.pointerCursor = {
gtk.enable = true;
package = pkgs.catppuccin-cursors."${ctp-opt.flavor}Light";
name = "catppuccin-${ctp-opt.flavor}-light-cursors";
name = lib.mkOverride 30 "catppuccin-${ctp-opt.flavor}-light-cursors";
size = 24;
};
}