Meta.name: not nullable, since deduped
This commit is contained in:
@@ -3,7 +3,14 @@ let
|
|||||||
types = lib.types;
|
types = lib.types;
|
||||||
|
|
||||||
metaOptions = {
|
metaOptions = {
|
||||||
name = lib.mkOption { type = types.nullOr types.str; };
|
name = lib.mkOption {
|
||||||
|
type = types.str;
|
||||||
|
description = ''
|
||||||
|
Name of the clan.
|
||||||
|
|
||||||
|
Needs to be (globally) unique, as this determines the folder name where the flake gets downloaded to.
|
||||||
|
'';
|
||||||
|
};
|
||||||
description = lib.mkOption {
|
description = lib.mkOption {
|
||||||
default = null;
|
default = null;
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
|
|||||||
Reference in New Issue
Block a user