summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Nagy <danielnagy@posteo.de>2021-05-25 19:24:29 +0200
committerDaniel Nagy <danielnagy@posteo.de>2021-05-30 14:38:18 +0200
commit941fd008ede8ad2423c257a18681011939d9fe11 (patch)
tree6de957298501d9dfc469f973bfd06fc10a7f7533
parenta5321aecfb51c7abdd45254d821e8122820850d3 (diff)
nixos/lighttpd: set port type to `types.port`
-rw-r--r--nixos/modules/services/web-servers/lighttpd/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/lighttpd/default.nix b/nixos/modules/services/web-servers/lighttpd/default.nix
index d1cb8a8dc258..7a691aa78915 100644
--- a/nixos/modules/services/web-servers/lighttpd/default.nix
+++ b/nixos/modules/services/web-servers/lighttpd/default.nix
@@ -134,7 +134,7 @@ in
port = mkOption {
default = 80;
- type = types.int;
+ type = types.port;
description = ''
TCP port number for lighttpd to bind to.
'';