aboutsummaryrefslogtreecommitdiff
path: root/tmux-tsunami/modules/common/main.nix
diff options
context:
space:
mode:
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 = [];
- };
- };
- };
-}