Merge pull request #86236 from ThibautMarty/fix-nullOr-types

treewide: fix modules options types where the default is null
This commit is contained in:
Lassulus
2020-08-26 18:21:29 +02:00
committed by GitHub
9 changed files with 10 additions and 10 deletions
@@ -83,14 +83,14 @@ in {
};
dataStorageSpace = mkOption {
type = types.str;
type = types.nullOr types.str;
default = null;
example = "/data/storage";
description = "Directory for data storage.";
};
metadataStorageSpace = mkOption {
type = types.str;
type = types.nullOr types.str;
default = null;
example = "/data/meta";
description = "Directory for meta data storage.";