Meta.name: not nullable, since deduped

This commit is contained in:
Johannes Kirschbauer
2024-10-04 14:30:50 +02:00
parent 68a571f858
commit f169b1bcd1

View File

@@ -3,7 +3,14 @@ let
types = lib.types;
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 {
default = null;
type = types.nullOr types.str;