From f093ed29bf23427dbce636a2ac64374194f6b234 Mon Sep 17 00:00:00 2001 From: Toast <39011842+toast003@users.noreply.github.com> Date: Thu, 31 Jul 2025 02:19:22 +0200 Subject: [PATCH] nix: remove space from list separator The extra speces made copyparty freak out if you tried listening to an ip address and a unix socket at the same time --- contrib/nixos/modules/copyparty.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/nixos/modules/copyparty.nix b/contrib/nixos/modules/copyparty.nix index cd4fef40..994b2575 100644 --- a/contrib/nixos/modules/copyparty.nix +++ b/contrib/nixos/modules/copyparty.nix @@ -22,7 +22,7 @@ let mkValueString = value: if isList value then - (concatStringsSep ", " (map mkValueString value)) + (concatStringsSep "," (map mkValueString value)) else if isAttrs value then "\n" + (mkAttrsString value) else