diff options
author | jeschli <jeschli@gmail.com> | 2017-12-05 21:29:45 +0000 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2017-12-05 21:29:45 +0000 |
commit | 29f9d3b86926916df63d4525f909316df5638f86 (patch) | |
tree | 2771a340769cde5d04b79355570c0be7d375a68a /jeschli/source.nix | |
parent | 8030352c450432a0cee14f561241831875f8399b (diff) |
boom
Diffstat (limited to 'jeschli/source.nix')
-rw-r--r-- | jeschli/source.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/jeschli/source.nix b/jeschli/source.nix new file mode 100644 index 000000000..d5e14a8dc --- /dev/null +++ b/jeschli/source.nix @@ -0,0 +1,22 @@ +with import <stockholm/lib>; +host@{ name, secure ? false, override ? {} }: let + builder = if getEnv "dummy_secrets" == "true" + then "buildbot" + else "jeschli"; + _file = <stockholm> + "/jeschli/1systems/${name}/source.nix"; +in + evalSource (toString _file) [ + { + nixos-config.symlink = "stockholm/jeschli/1systems/${name}/config.nix"; + nixpkgs.git = { + url = https://github.com/nixos/nixpkgs; + ref = "f9390d6"; + }; + secrets.file = getAttr builder { + buildbot = toString <stockholm/jeschli/2configs/tests/dummy-secrets>; + jeschli = "/home/jeschli/secrets/${name}"; + }; + stockholm.file = toString <stockholm>; + } + override + ] |