From 2d0aa999ce33415b976f4803f2fb93dbe06859d0 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 22 Sep 2025 15:25:01 +0200 Subject: [PATCH] nixos/shibboleth-sp: use `types.port` --- nixos/modules/services/security/shibboleth-sp.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/security/shibboleth-sp.nix b/nixos/modules/services/security/shibboleth-sp.nix index e9f92dcc0928..74dd333b1ae7 100644 --- a/nixos/modules/services/security/shibboleth-sp.nix +++ b/nixos/modules/services/security/shibboleth-sp.nix @@ -30,13 +30,13 @@ in }; fastcgi.shibAuthorizerPort = lib.mkOption { - type = lib.types.int; + type = lib.types.port; default = 9100; description = "Port for shibauthorizer FastCGI process to bind to"; }; fastcgi.shibResponderPort = lib.mkOption { - type = lib.types.int; + type = lib.types.port; default = 9101; description = "Port for shibauthorizer FastCGI process to bind to"; };