Meta.name: not nullable, since deduped

This commit is contained in:
Johannes Kirschbauer
2024-10-04 14:30:50 +02:00
parent 71d3d03b43
commit d812445e90

View File

@@ -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;