refactor: system -> systemConfig

This commit is contained in:
arcnmx 2024-06-23 10:06:36 -07:00
parent 512b1fc75b
commit 45705650bb
31 changed files with 127 additions and 131 deletions

View file

@ -147,7 +147,8 @@ in {
inherit inputs;
inherit (inputs) self;
inherit (inputs.self) overlays;
inherit (inputs.self.lib) tree meta lib systems std Std;
inherit (inputs.self.lib) tree meta lib std Std;
systems = builtins.mapAttrs (_: system: system.config) systems;
};
generate = import ./generate.nix {inherit inputs tree;};
}