summaryrefslogtreecommitdiffstats
path: root/lass/source.nix
blob: a4e9d9d6a553f6ee547506caa8359deeccafb198 (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
with import <stockholm/lib>;
host@{ name, secure ? false }: 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";
    secrets.file = getAttr builder {
      buildbot = toString <stockholm/lass/2configs/tests/dummy-secrets>;
      lass = "/home/lass/secrets/${name}";
    };
    stockholm.file = toString <stockholm>;
    nixpkgs.git = {
      url = https://cgit.lassul.us/nixpkgs;
      # nixos-17.03
      # + copytoram:
      #   87a4615 & 334ac4f
      # + acme permissions for groups
      #   fd7a8f1
      ref = "0aac3fc";
    };
  }