Switched to catppuccin
This commit is contained in:
parent
a7a8b638b0
commit
6ab7837acf
15 changed files with 114 additions and 78 deletions
22
modules/home/programs/k9s/default.nix
Normal file
22
modules/home/programs/k9s/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue