diff options
author | nin <nineinchnade@gmail.com> | 2017-07-13 23:53:54 +0200 |
---|---|---|
committer | nin <nineinchnade@gmail.com> | 2017-07-13 23:53:54 +0200 |
commit | 01fc0e14ef3b6a8af8bb60f84ebb6b5474bab410 (patch) | |
tree | ae0773971f6061406f7ef0bf8d93bdba34e9a8ef /nin/source.nix | |
parent | c4627764062a42f8d952ff90557c1e0d8735485f (diff) |
move source config from module system to 1systems/*/source.nix
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"; + }; + } |