From af89f21de9e4c49853d8737e946ca65f3916db13 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 18 Sep 2025 16:02:23 +0200 Subject: [PATCH] nixos/snapserver: fix default http port This was missed in the prior review and overlaps with the TCP port. --- nixos/modules/services/audio/snapserver.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/audio/snapserver.nix b/nixos/modules/services/audio/snapserver.nix index 9fcaa2f2c158..84904d920870 100644 --- a/nixos/modules/services/audio/snapserver.nix +++ b/nixos/modules/services/audio/snapserver.nix @@ -176,7 +176,7 @@ in port = mkOption { type = types.port; - default = 1705; + default = 1780; description = '' Port to listen on for snapclient connections. '';