summaryrefslogtreecommitdiffstats
path: root/lass/source.nix
blob: 473dd2cf24ce1f70a4e677cde3778f3456584591 (plain)
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
with import <stockholm/lib>;
host@{ name, secure ? false, override ? {} }: let
  builder = if getEnv "dummy_secrets" == "true"
              then "buildbot"
              else "lass";
  _file = <stockholm> + "/lass/1systems/${name}/source.nix";
in
  evalSource (toString _file) [
    {
      nixos-config.symlink = "stockholm/lass/1systems/${name}/config.nix";
      nixpkgs.git = {
        url = https://github.com/nixos/nixpkgs;
        ref = "3aec59c";
      };
      secrets = getAttr builder {
        buildbot.file = toString <stockholm/lass/2configs/tests/dummy-secrets>;
        lass.pass = {
          dir = "${getEnv "HOME"}/.password-store";
          name = "hosts/${name}";
        };
      };
      stockholm.file = toString <stockholm>;
    }
    override
  ]