summaryrefslogtreecommitdiffstats
path: root/shared/source.nix
blob: 8ec9fbb6fb8b9829ca077a51c1abca1b58d09e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
with import <stockholm/lib>;
host@{ name, secure ? false }: let
  builder = if getEnv "dummy_secrets" == "true"
              then "buildbot"
              else "shared";
  _file = <stockholm> + "/shared/1systems/${name}/source.nix";
in
  evalSource (toString _file) {
    nixos-config.symlink = "stockholm/shared/1systems/${name}/config.nix";
    secrets.file = getAttr builder {
      buildbot = toString <stockholm/shared/6tests/data/secrets>;
      lass = "${getEnv "HOME"}/secrets/krebs/${host.name}";
    };
    stockholm.file = toString <stockholm>;
    nixpkgs.git = {
      url = https://github.com/NixOS/nixpkgs;
      ref = "72c9ed78d0b1d9d5f531805ddf5bf06bfd447614"; # nixos-17.03 @ 2017-06-17
    };
  }