s/types.string/types.str/

This commit is contained in:
Colin 2023-10-17 22:46:02 +00:00
parent a218ddb202
commit 90b1215a89
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ let
type = types.enum [ "base64" ]; type = types.enum [ "base64" ];
}; };
acl.mode = mkOption { acl.mode = mkOption {
type = types.string; type = types.str;
default = "0600"; default = "0600";
}; };
}; };

View File

@ -105,7 +105,7 @@ let
''; '';
}; };
arp.destIp = mkOption { arp.destIp = mkOption {
type = types.nullOr types.string; type = types.nullOr types.str;
default = null; default = null;
description = '' description = ''
IP address being queried. IP address being queried.