diff --git a/flakeModules/clan.nix b/flakeModules/clan.nix index 9ce2bff9a..60f47df7d 100644 --- a/flakeModules/clan.nix +++ b/flakeModules/clan.nix @@ -47,19 +47,13 @@ in darwinConfigurations = lib.mkOption { type = types.lazyAttrsOf types.raw; description = "darwinConfigurations produced by clan for a specific machine"; - apply = lib.mapAttrs ( - k: v: { - _file = "#nixosModules.${k}"; - imports = [ v ]; - } - ); }; darwinModules = lib.mkOption { type = types.lazyAttrsOf types.deferredModule; description = "darwinModules produced by clan for a specific machine"; apply = lib.mapAttrs ( k: v: { - _file = "#nixosModules.${k}"; + _file = "#darwinModules.${k}"; imports = [ v ]; } );