From 6af2a9236d8f5a6d96a6d86b86f4c67fcb31c73f Mon Sep 17 00:00:00 2001 From: Silas Schöffel Date: Fri, 20 Jun 2025 15:58:59 +0200 Subject: zellij: init --- modules/hm/sils/default.nix | 1 + modules/hm/sils/zellij.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 modules/hm/sils/zellij.nix (limited to 'modules') 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; + }; + }; +} -- cgit 1.4.1