Correct module type

This commit is contained in:
Sandro - 2023-03-10 20:25:47 +01:00
parent b7075276dc
commit f5fd030426
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 2 additions and 2 deletions

View File

@ -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.