From 792ccdab5c44f197da92a56c73d0e8fec09774b9 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 22 Sep 2025 16:08:10 +0200 Subject: [PATCH] nixos/squid: use `types.port` --- nixos/modules/services/networking/squid.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/squid.nix b/nixos/modules/services/networking/squid.nix index 7a6a5cea15fc..bc072c249c56 100644 --- a/nixos/modules/services/networking/squid.nix +++ b/nixos/modules/services/networking/squid.nix @@ -145,7 +145,7 @@ in }; proxyPort = mkOption { - type = types.int; + type = types.port; default = 3128; description = "TCP port on which squid will listen."; };