From f5fd030426726e15042394b07a957bb120a496ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 10 Mar 2023 20:25:47 +0100 Subject: [PATCH] Correct module type --- hosts/public-access-proxy/proxy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/public-access-proxy/proxy.nix b/hosts/public-access-proxy/proxy.nix index 76cc58e5..8a124ee9 100644 --- a/hosts/public-access-proxy/proxy.nix +++ b/hosts/public-access-proxy/proxy.nix @@ -36,14 +36,14 @@ in ''; }; httpPort = lib.mkOption { - type = lib.types.int; + type = lib.types.port; default = 80; description = '' Port to forward http to. ''; }; httpsPort = lib.mkOption { - type = lib.types.int; + type = lib.types.port; default = 443; description = '' Port to forward http to.