core vars: remove default for dirs
This commit is contained in:
@@ -23,10 +23,10 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
secretUploadDirectory = lib.mkOption {
|
secretUploadDirectory = lib.mkOption {
|
||||||
type = lib.types.nullOr lib.types.path;
|
type = lib.types.path;
|
||||||
default = null;
|
|
||||||
description = ''
|
description = ''
|
||||||
The directory where secrets are uploaded into, This is backend specific.
|
The directory where secrets are uploaded into, This is backend specific.
|
||||||
|
This is usally set by the secret store backend.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -63,10 +63,10 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
publicDirectory = lib.mkOption {
|
publicDirectory = lib.mkOption {
|
||||||
type = lib.types.nullOr lib.types.path;
|
type = lib.types.path;
|
||||||
default = null;
|
|
||||||
description = ''
|
description = ''
|
||||||
The directory where public facts are stored.
|
The directory where public facts are stored.
|
||||||
|
This is usally set by the public store backend.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user