nixos/darkhttpd: set port type to types.port

This commit is contained in:
Daniel Nagy 2021-05-25 19:23:34 +02:00
parent 50146a84a3
commit a5321aecfb
No known key found for this signature in database
GPG Key ID: 1B8E8DCB576FB671

View File

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