diff --git a/modules/transposition.nix b/modules/transposition.nix index 244b736..d532e76 100644 --- a/modules/transposition.nix +++ b/modules/transposition.nix @@ -101,7 +101,10 @@ in lib.mapAttrs (attrName: attrConfig: mapAttrs - (system: v: v.${attrName}) + (system: v: v.${attrName} or ( + abort '' + Could not find option ${attrName} in the perSystem module. It is required to declare such an option whenever transposition. is defined (and in this instance is ${attrName}). + '')) config.allSystems ) config.transposition;