diff options
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/third_party/default.nix b/third_party/default.nix index 5a244ed22039..e9e3c117cec0 100644 --- a/third_party/default.nix +++ b/third_party/default.nix @@ -12,7 +12,7 @@ # other folders below //third_party, other than the ones mentioned # above. -{ pkgs, ... }: +{ pkgs, depot, ... }: { # Expose a partially applied NixOS, expecting an attribute set with @@ -33,7 +33,10 @@ let eval = import "${pkgs.path}/nixos/lib/eval-config.nix" { inherit specialArgs system; - modules = [ configuration ]; + modules = [ + configuration + (import "${depot.path + "/ops/modules/default-imports.nix"}") + ]; }; # This is for `nixos-rebuild build-vm'. |