diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-04-29 15:20:57 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-04-29 15:20:57 -0500 |
| commit | 9c9a49a855951662da62bcdec45f69ddc0099e5c (patch) | |
| tree | 1f7852971693d9e49d16a77aff51b87d39940b1b /modules/services/options.nix | |
| parent | 21de12cd6e63adf463674942f1a8f9b658f47945 (diff) | |
changes
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 { |
