about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-05-24T21·29+0200
committertazjin <mail@tazj.in>2021-05-24T21·48+0000
commit4a89bcd6a5cd409731d7d80fe3dbe364ba00c187 (patch)
treedb714c2e4332b31e48c8981a8e2f70e5073eed52 /third_party
parent0491fb24bf0493083e3084352987dd39fefad568 (diff)
refactor(ops/nixos): Pass `depot` as a special argument r/2626
This changes the evaluation order for the `depot` argument and ensures
it is partially evaluated before the module system starts resolving
imports.

This way we can import modules from `depot.path` without `depot`
having to come from readTree.

Fixes b/129.

Change-Id: Icf4dd2be15011055dac8b27e991a4ff6a12bf827
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3156
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/default.nix35
1 files changed, 32 insertions, 3 deletions
diff --git a/third_party/default.nix b/third_party/default.nix
index 0b1e94c7f8..5a244ed220 100644
--- a/third_party/default.nix
+++ b/third_party/default.nix
@@ -17,7 +17,36 @@
 {
   # Expose a partially applied NixOS, expecting an attribute set with
   # a `configuration` key. Exposing it like this makes it possible to
-  # modify some of the base configuration used by NixOS. passed to
-  # this.
-  nixos = import "${pkgs.path}/nixos";
+  # modify some of the base configuration used by NixOS.
+  #
+  # This partially reimplements the code in
+  # <nixpkgs/nixos/default.nix> as we need to modify its internals to
+  # be able to pass `specialArgs`. We depend on this because `depot`
+  # needs to be partially evaluated in NixOS configuration before
+  # module imports are resolved.
+  nixos = {
+    configuration,
+    specialArgs ? {},
+    system ? builtins.currentSystem,
+    ...
+  }:
+  let
+    eval = import "${pkgs.path}/nixos/lib/eval-config.nix" {
+      inherit specialArgs system;
+      modules = [ configuration ];
+    };
+
+    # This is for `nixos-rebuild build-vm'.
+    vmConfig = (import "${pkgs.path}/nixos/lib/eval-config.nix" {
+      inherit specialArgs system;
+      modules = [
+        configuration
+        "${pkgs.path}/nixos/modules/virtualisation/qemu-vm.nix"
+      ];
+    }).config;
+  in {
+    inherit (eval) pkgs config options;
+    system = eval.config.system.build.toplevel;
+    vm = vmConfig.system.build.vm;
+  };
 }