nixos/dockerRegistry: use port type

This commit is contained in:
Daniel Nagy 2021-06-18 17:30:11 +02:00
parent a8808784e5
commit 50ba0ac3d6
No known key found for this signature in database
GPG key ID: 1B8E8DCB576FB671

View file

@ -58,7 +58,7 @@ in {
port = mkOption {
description = "Docker registry port to bind to.";
default = 5000;
type = types.int;
type = types.port;
};
storagePath = mkOption {