summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--home/pc/home.nix1
-rw-r--r--home/pc/modules/k9s.nix26
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;
+ };
+}