nixos/squid: use `types.port`

h7x4 792ccdab 51dd68f9

Changed files
+1 -1
nixos
modules
services
networking
+1 -1
nixos/modules/services/networking/squid.nix
···
};
proxyPort = mkOption {
-
type = types.int;
default = 3128;
description = "TCP port on which squid will listen.";
};
···
};
proxyPort = mkOption {
+
type = types.port;
default = 3128;
description = "TCP port on which squid will listen.";
};