about summary refs log tree commit diff
path: root/third_party/default.nix
blob: 874aecd3e7b52fe0722d425fece7f9b587ad432c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# This file defines the root of all external dependency imports (i.e.
# third-party code) in the TVL package tree.
#
# There are two categories of third-party programs:
#
# 1) Programs in nixpkgs, the NixOS package set. For these, you might
#    want to look at //third_party/nixpkgs (for the package set
#    imports) and //third_party/overlays (for modifications in these
#    imported package sets).
#
# 2) Third-party software packaged in this repository. This is all
#    other folders below //third_party, other than the ones mentioned
#    above.

{ pkgs, depot, localSystem, ... }:

{
  # 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.
  #
  # 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 ? localSystem
    , ...
    }:
    let
      eval = import (pkgs.path + "/nixos/lib/eval-config.nix") {
        inherit specialArgs system;
        modules = [
          configuration
          (import (depot.path.origSrc + "/ops/modules/default-imports.nix"))
        ];
      };

      # 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;
    };
}