diff options
| -rw-r--r-- | srv/hadante/fuzzel.nix | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/srv/hadante/fuzzel.nix b/srv/hadante/fuzzel.nix index 3cd438b..4d82df5 100644 --- a/srv/hadante/fuzzel.nix +++ b/srv/hadante/fuzzel.nix @@ -1,14 +1,27 @@ -{ config, pkgs, ... }: +{ + config, + pkgs, + inputs, + ... +}: +let + + palette = inputs.catppuccin.legacyPackages.x86_64-linux.palette; + colors = builtins.fromJSON (builtins.readFile "${palette.out}/palette.json"); + mocha = colors.mocha.colors; +in { home-manager.users.${config.user} = { programs.fuzzel.enable = true; - catppuccin.fuzzel.enable = true; programs.fuzzel.settings = { main = { font = "ComicShannsMono Nerd Font"; use-bold = true; fields = "name,categories"; }; + colors = { + background = mocha.surface0; + }; }; }; } |
