From b8ab2171dca8cbea5b0a91be4805819d2024c35d Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Thu, 5 Feb 2026 03:51:16 -0600 Subject: [PATCH] nextcloud declarativedly set port --- modules/servers/nextcloud.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/servers/nextcloud.nix b/modules/servers/nextcloud.nix index 30e4853..cd2a379 100644 --- a/modules/servers/nextcloud.nix +++ b/modules/servers/nextcloud.nix @@ -38,7 +38,7 @@ let in { options.my.servers = { - nextcloud = setup.mkOptions "nextcloud" "cloud" 80; + nextcloud = setup.mkOptions "nextcloud" "cloud" 8081; collabora = setup.mkOptions "collabora" "collabora" 9980; go-vod.enable = lib.mkEnableOption "Go-VOD video transcoding service"; }; @@ -172,11 +172,11 @@ in listen = [ { addr = config.my.ips.wg-server; - port = 8081; + inherit (cfg) port; } { addr = config.my.localhost; - port = 8081; + inherit (cfg) port; } ]; #vps