From a5eb2353d10dbf14cd4d05932b69046b9a47c935 Mon Sep 17 00:00:00 2001 From: niten Date: Sat, 20 Jan 2024 22:41:07 -0800 Subject: [PATCH] ports must be a list --- lemmy-container.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemmy-container.nix b/lemmy-container.nix index 446535a..05e777a 100644 --- a/lemmy-container.nix +++ b/lemmy-container.nix @@ -26,7 +26,7 @@ let "pictrs-data:/var/lib/pict-rs" "${cfg.admin-password-file}:${cfg.admin-password-file}" ]; - ports = "${toString cfg.port}:80"; + ports = [ "${toString cfg.port}:80" ]; networks = [ "internal_network" "internal_network" ]; }; nixos = {