zaphyra's git: nixfiles

zaphyra's nixfiles

commit 37780373a49fb2b362f256df271eff60f6ba04a1
parent fe92ecc8eab827d96e390d72b52e43d41b45d240
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Wed, 30 Jul 2025 18:35:59 +0200

config/home/zaphyra/programs: add `chawan`
2 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/config/home/zaphyra/home.nix b/config/home/zaphyra/home.nix
@@ -14,6 +14,7 @@
     programs.eza
     programs.bat
 
+    programs.chawan
     programs.yazi
     programs.micro
     programs.helix
diff --git a/config/home/zaphyra/programs/chawan.nix b/config/home/zaphyra/programs/chawan.nix
@@ -0,0 +1,17 @@
+{ ... }:
+
+{
+
+  programs.chawan = {
+    enable = true;
+    settings = {
+      buffer = {
+        images = true;
+        scripting = "app";
+        autofocus = true;
+        cookie = "save";
+      };
+    };
+  };
+
+}