forked from DGNum/colmena
imp: soc of eval, modules & options
- the reason for this change is to have more transparent separation of concern between effectuations of the module system and pre-module system effectuations - with improved flakes support down the line, pre-module system effectuations will get more complex - this also allows to patch the aspects of the evaluation individually while tracking other components from upstream. eg. path options & eval but not modules
This commit is contained in:
parent
ea4f2ba6dc
commit
9bd5e7bb25
5 changed files with 429 additions and 398 deletions
|
@ -15,8 +15,11 @@
|
|||
|
||||
outputs = { self, nixpkgs, utils, ... }: let
|
||||
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
||||
colmenaOptions = import ./src/nix/hive/options.nix;
|
||||
colmenaModules = import ./src/nix/hive/modules.nix;
|
||||
evalNix = import ./src/nix/hive/eval.nix {
|
||||
hermetic = true;
|
||||
inherit colmenaOptions colmenaModules;
|
||||
};
|
||||
in utils.lib.eachSystem supportedSystems (system: let
|
||||
pkgs = import nixpkgs {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue