We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7010af commit 0c1c75aCopy full SHA for 0c1c75a
docs/render.nix
@@ -209,7 +209,11 @@ in
209
evaluated = lib.evalModules {
210
modules = modules ++ [
211
{
212
- imports = builtins.import "${inputs.nixpkgs}/nixos/modules/module-list.nix";
+ # We need standard NixOS modules _plus_ `cardano.providers` inside context of evaluation, because lof of modules
213
+ # refers to them in `default` statement.
214
+ # Also we couldn't use `builtins.import`, because it raise a conflict in option definitions,
215
+ # so use nested module with `imports = []` statement.
216
+ imports = builtins.import "${inputs.nixpkgs}/nixos/modules/module-list.nix" ++ [ { imports = [ ../modules/providers.nix ]; } ];
217
nixpkgs.system = system;
218
}
219
];
0 commit comments