diff options
Diffstat (limited to 'modules/services/options.nix')
| -rw-r--r-- | modules/services/options.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/services/options.nix b/modules/services/options.nix index bb43180..8918781 100644 --- a/modules/services/options.nix +++ b/modules/services/options.nix @@ -114,6 +114,11 @@ in { default_port = 8072; }; + ganyupload = webserviceOptions { + service_name = "ganyupload"; + default_port = 8073; + }; + copyparty = (webserviceOptions { service_name = "copyparty"; @@ -141,6 +146,14 @@ in { }; }; + ngircd = { + enable = mkEnableOption "ncircd IRC server"; + port = mkOption { + type = lib.types.port; + default = 6667; + }; + }; + minecraft = { enable = mkEnableOption "Minecraft bedrock server"; listenAddr = mkOption { |
