From 6c0198e8ce5408618c2c1ce13cd77eb601058ff5 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 5 Jun 2024 09:37:00 -0700 Subject: [PATCH] listen-ips should be a list of strings --- paris-container.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paris-container.nix b/paris-container.nix index 7fa11f8..0ccf1d4 100644 --- a/paris-container.nix +++ b/paris-container.nix @@ -43,7 +43,7 @@ in { }; listen-ips = mkOption { - type = str; + type = listOf str; description = "Address on which to listen for requests."; };