aboutsummaryrefslogtreecommitdiff
path: root/tmux-tsunami/modules/common/main.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-05-22 10:23:58 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-05-22 10:24:06 -0500
commit35af4bab99da94845ebd6e9b2efae6a544d39b35 (patch)
tree47c6f76b47f1012932729c9f693316df1512197a /tmux-tsunami/modules/common/main.nix
parent2e0c6ccbbc76cc36e92128aea44e4bdd4e5c3d0a (diff)
LOTS OF TEMP STUFF
Diffstat (limited to 'tmux-tsunami/modules/common/main.nix')
-rw-r--r--tmux-tsunami/modules/common/main.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/tmux-tsunami/modules/common/main.nix b/tmux-tsunami/modules/common/main.nix
new file mode 100644
index 0000000..25366d9
--- /dev/null
+++ b/tmux-tsunami/modules/common/main.nix
@@ -0,0 +1,23 @@
+{lib, ...}: let
+ inherit (lib) mkOption mkEnableOption;
+in {
+ options = {
+ tsunami = {
+ enable = mkEnableOption "tsunami tmux distro";
+ scripts = mkOption {
+ type = lib.types.attrsOf (lib.types.str);
+ default = [];
+ };
+
+ files = mkOption {
+ type = lib.types.attrsOf (lib.types.str);
+ default = [];
+ };
+
+ confs = mkOption {
+ type = lib.types.attrsOf (lib.types.str);
+ default = [];
+ };
+ };
+ };
+}