From 8b990276c5e9abccd772694b1f7232d8b49b634c Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Wed, 15 Jul 2026 06:54:33 -0500 Subject: initial commit --- modules/common/main.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 modules/common/main.nix (limited to 'modules/common/main.nix') diff --git a/modules/common/main.nix b/modules/common/main.nix new file mode 100644 index 0000000..25366d9 --- /dev/null +++ b/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