20 lines
635 B
Nix
20 lines
635 B
Nix
|
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";
|
||
|
};
|
||
|
}
|