summaryrefslogtreecommitdiffstats
path: root/lass/source.nix
blob: 01631bef103c536071f80f3cf5c94bc64a1ec217 (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
26
27
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 = http://cgit.lassul.us/nixpkgs;
        # nixos-17.03
        # + copytoram:
        #   87a4615 & 334ac4f
        # + acme permissions for groups
        #   fd7a8f1
        ref = "d151161";
      };
      secrets.file = getAttr builder {
        buildbot = toString <stockholm/lass/2configs/tests/dummy-secrets>;
        lass = "/home/lass/secrets/${name}";
      };
      stockholm.file = toString <stockholm>;
    }
    override
  ]