feat(topology): add auto-aggregation and dual-definition of options

This commit is contained in:
oddlama 2024-03-15 17:17:03 +01:00
parent 67063adf24
commit a737071162
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
13 changed files with 223 additions and 132 deletions

View file

@ -4,9 +4,9 @@ inputs: {
}:
inputs.nixpkgs.lib.evalModules {
prefix = ["topology"];
modules = [./modules] ++ modules;
modules = [./topology] ++ modules;
specialArgs = {
modulesPath = builtins.toString ./modules;
modulesPath = builtins.toString ./topology;
inherit pkgs;
};
}