diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-08-29 18:44:04 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-08-31 15:38:10 +0530 |
commit | 07854ac073b6c4a3e749078fa113367105a7af08 (patch) | |
tree | d4df3441b2a83e10df83618dd3fe98bedcbc78f1 | |
parent | 055af0cc4421732f3d5a695082ec34f178f7e5dc (diff) |
feat(home/pc): init k9s
-rw-r--r-- | home/pc/home.nix | 1 | ||||
-rw-r--r-- | home/pc/modules/k9s.nix | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/home/pc/home.nix b/home/pc/home.nix index 16240ed..2afc2de 100644 --- a/home/pc/home.nix +++ b/home/pc/home.nix @@ -2,6 +2,7 @@ { imports = [ ./modules/pass.nix + ./modules/k9s.nix ../wayland/home.nix ]; diff --git a/home/pc/modules/k9s.nix b/home/pc/modules/k9s.nix new file mode 100644 index 0000000..1aec22f --- /dev/null +++ b/home/pc/modules/k9s.nix @@ -0,0 +1,26 @@ +{ + programs.k9s = { + enable = true; + skins = { + transparency = { + k9s = { + body.bgColor = "default"; + frame = { + crumbs.bgColor = "default"; + title.bgColor = "default"; + + }; + views = { + table = { + bgColor = "default"; + header.bgColor = "default"; + }; + logs.bgColor = "default"; + }; + }; + }; + }; + + settings.ui.splashless = true; + }; +} |