Refactored tmux and k9s

This commit is contained in:
fwastring 2025-09-10 14:41:41 +02:00
parent 36fbf464ed
commit d930e11fba
7 changed files with 122 additions and 10 deletions

20
moduler/k9s/default.nix Normal file
View file

@ -0,0 +1,20 @@
{
config,
inputs,
pkgs,
...
}:
let
in
{
programs.k9s = {
enable = true;
settings = {
k9s.ui.skin = "catppuccin-latte";
};
skins = {
catppuccin-latte = ./latte-transparent.yml;
};
};
}