diff options
author | lassulus <lassulus@lassul.us> | 2017-07-14 00:41:53 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2017-07-14 00:41:53 +0200 |
commit | 6915b2ed54cc59884f551d95789d7a45ce13127a (patch) | |
tree | 7fbf8a258e33dd4d62641e199347f8e2e48c35f5 /nin/source.nix | |
parent | 8d128c769aec24d8989db8220d680ea6f4735193 (diff) | |
parent | 01fc0e14ef3b6a8af8bb60f84ebb6b5474bab410 (diff) |
Merge remote-tracking branch 'onondaga/master'
Diffstat (limited to 'nin/source.nix')
-rw-r--r-- | nin/source.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/nin/source.nix b/nin/source.nix new file mode 100644 index 000000000..1eb9185ab --- /dev/null +++ b/nin/source.nix @@ -0,0 +1,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/2configs/tests/dummy-secrets>; + nin = "/home/nin/secrets/${name}"; + }; + stockholm.file = toString <stockholm>; + nixpkgs.git = { + url = https://github.com/nixos/nixpkgs; + ref = "01c3847"; + }; + } |