diff options
Diffstat (limited to 'modules/common/main.nix')
| -rw-r--r-- | modules/common/main.nix | 23 |
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 = []; + }; + }; + }; +} |
