nixos/shibboleth-sp: use types.port

This commit is contained in:
h7x4
2025-09-22 16:32:58 +02:00
parent 57c3d1033d
commit 2d0aa999ce
@@ -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";
};