From 35af4bab99da94845ebd6e9b2efae6a544d39b35 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Fri, 22 May 2026 10:23:58 -0500 Subject: LOTS OF TEMP STUFF --- tmux-tsunami/modules/common/main.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tmux-tsunami/modules/common/main.nix (limited to 'tmux-tsunami/modules/common/main.nix') 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 = []; + }; + }; + }; +} -- cgit v1.3.1