summaryrefslogtreecommitdiff
path: root/modules/common/main.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-15 06:54:33 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-15 06:54:33 -0500
commit8b990276c5e9abccd772694b1f7232d8b49b634c (patch)
tree23f4c3713c538f435354270de2005475c50955d0 /modules/common/main.nix
initial commit
Diffstat (limited to 'modules/common/main.nix')
-rw-r--r--modules/common/main.nix23
1 files changed, 23 insertions, 0 deletions
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 = [];
+ };
+ };
+ };
+}