Switched to catppuccin

This commit is contained in:
alejandro-angulo 2024-08-11 19:21:41 -07:00
parent a7a8b638b0
commit 6ab7837acf
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
15 changed files with 114 additions and 78 deletions

View file

@ -0,0 +1,22 @@
{
config,
lib,
namespace,
...
}: let
cfg = config.${namespace}.programs.k9s;
in {
options.${namespace}.programs.k9s = {
enable = lib.mkEnableOption "k9s";
};
config = lib.mkIf cfg.enable {
programs.k9s = {
enable = true;
catppuccin = {
enable = true;
transparent = true;
};
};
};
}