Skip to content

Commit 3106839

Browse files
committed
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
1 parent b4c832c commit 3106839

File tree

5 files changed

+429
-398
lines changed

5 files changed

+429
-398
lines changed

flake.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515

1616
outputs = { self, nixpkgs, utils, ... }: let
1717
supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
18+
colmenaOptions = import ./src/nix/hive/options.nix;
19+
colmenaModules = import ./src/nix/hive/modules.nix;
1820
evalNix = import ./src/nix/hive/eval.nix {
1921
hermetic = true;
22+
inherit colmenaOptions colmenaModules;
2023
};
2124
in utils.lib.eachSystem supportedSystems (system: let
2225
pkgs = import nixpkgs {

0 commit comments

Comments
 (0)