From f169b1bcd14551937fee94f5d430ed25e6f4f787 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Fri, 4 Oct 2024 14:30:50 +0200 Subject: [PATCH] Meta.name: not nullable, since deduped --- lib/inventory/build-inventory/meta-interface.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/inventory/build-inventory/meta-interface.nix b/lib/inventory/build-inventory/meta-interface.nix index 69ebecef3..d062f72d0 100644 --- a/lib/inventory/build-inventory/meta-interface.nix +++ b/lib/inventory/build-inventory/meta-interface.nix @@ -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;