From ecd68fbd3bb1af95357f378b4da1e3d8e895ca17 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 11 Jun 2023 00:08:59 +0100 Subject: [PATCH] Convert listen to list --- hosts/library/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/library/default.nix b/hosts/library/default.nix index 464951c..159f926 100644 --- a/hosts/library/default.nix +++ b/hosts/library/default.nix @@ -104,10 +104,12 @@ with lib.my; virtualHosts = { "jellyfin.vimium.com" = { default = true; - listen = { - addr = "127.0.0.1"; - port = 8000; - }; + listen = [ + { + addr = "127.0.0.1"; + port = 8000; + } + ]; locations."/" = { proxyPass = "http://localhost:8096"; extraConfig = proxyConfig;