summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2025-06-20 15:58:59 +0200
committerSilas Schöffel <sils@sils.li>2025-06-20 15:58:59 +0200
commit6af2a9236d8f5a6d96a6d86b86f4c67fcb31c73f (patch)
treeefbfdc2c8b2fbc51afc33d952255fb63de2222d8 /modules
parenthosts/thinklappi-bootstrap: rename hardware.opengl to hardware.graphics (diff)
downloadnix-config-6af2a9236d8f5a6d96a6d86b86f4c67fcb31c73f.zip
zellij: init
Diffstat (limited to 'modules')
-rw-r--r--modules/hm/sils/default.nix1
-rw-r--r--modules/hm/sils/zellij.nix14
2 files changed, 15 insertions, 0 deletions
diff --git a/modules/hm/sils/default.nix b/modules/hm/sils/default.nix
index eacfc03..03cfaef 100644
--- a/modules/hm/sils/default.nix
+++ b/modules/hm/sils/default.nix
@@ -20,5 +20,6 @@
     ./theming.nix
     ./yt-dlp.nix
     ./zathura.nix
+    ./zellij.nix
   ];
 }
diff --git a/modules/hm/sils/zellij.nix b/modules/hm/sils/zellij.nix
new file mode 100644
index 0000000..1038a0c
--- /dev/null
+++ b/modules/hm/sils/zellij.nix
@@ -0,0 +1,14 @@
+{
+  config,
+  lib,
+  ...
+}: let
+  cfg = config.sils.zellij;
+in {
+  options.sils.zellij.enable = lib.mkEnableOption "zellij";
+  config = lib.mkIf cfg.enable {
+    programs.zellij = {
+      enable = true;
+    };
+  };
+}