summaryrefslogtreecommitdiffstats
path: root/nin/source.nix
blob: bbf88d8043224cb66a6b73709327e3536d601dbd (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 "nin";
  _file = <stockholm> + "/nin/1systems/${name}/source.nix";
in
  evalSource (toString _file) {
    nixos-config.symlink = "stockholm/nin/1systems/${name}/config.nix";
    secrets.file = getAttr builder {
      buildbot = toString <stockholm/nin/6tests/dummysecrets>;
      nin = "/home/nin/secrets/${name}";
    };
    stockholm.file = toString <stockholm>;
    nixpkgs.git = {
      url = https://github.com/nixos/nixpkgs;
      ref = "cfafd6f";
    };
  }