summary refs log tree commit diff
path: root/nixos/modules/services/web-servers/darkhttpd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/web-servers/darkhttpd.nix')
-rw-r--r--nixos/modules/services/web-servers/darkhttpd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-servers/darkhttpd.nix b/nixos/modules/services/web-servers/darkhttpd.nix
index d6649fd472d..f6b693139a1 100644
--- a/nixos/modules/services/web-servers/darkhttpd.nix
+++ b/nixos/modules/services/web-servers/darkhttpd.nix
@@ -19,7 +19,7 @@ in {
 
     port = mkOption {
       default = 80;
-      type = ints.u16;
+      type = types.port;
       description = ''
         Port to listen on.
         Pass 0 to let the system choose any free port for you.