aboutsummaryrefslogtreecommitdiff
path: root/tmux-tsunami/modules/common/main.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-15 12:03:58 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-07-15 12:03:58 -0500
commitd2aecd69c17fa64305c07333686576152432993d (patch)
tree2f52c7808a6cbd57ef60284947d3728a38cfab34 /tmux-tsunami/modules/common/main.nix
parentf5ef0cf848e65d4fea2be8dee7bc1c72ad67046f (diff)
changes.
Diffstat (limited to 'tmux-tsunami/modules/common/main.nix')
-rw-r--r--tmux-tsunami/modules/common/main.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/tmux-tsunami/modules/common/main.nix b/tmux-tsunami/modules/common/main.nix
deleted file mode 100644
index 25366d9..0000000
--- a/tmux-tsunami/modules/common/main.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{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 = [];
- };
- };
- };
-}