df809dca51
While at it, fix */krops.nix to actually use the target attribute.
36 lines
914 B
Nix
36 lines
914 B
Nix
{ name }: let
|
|
inherit (import ../krebs/krops.nix { inherit name; })
|
|
krebs-source
|
|
lib
|
|
pkgs
|
|
;
|
|
|
|
source = { test }: lib.evalSource [
|
|
krebs-source
|
|
{
|
|
nixos-config.symlink = "stockholm/jeschli/1systems/${name}/config.nix";
|
|
secrets = if test then {
|
|
file = toString ./2configs/tests/dummy-secrets;
|
|
} else {
|
|
pass = {
|
|
dir = "${lib.getEnv "HOME"}/.password-store";
|
|
name = "hosts/${name}";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
|
|
in {
|
|
# usage: $(nix-build --no-out-link --argstr name HOSTNAME -A deploy)
|
|
deploy = pkgs.krops.writeDeploy "${name}-deploy" {
|
|
source = source { test = false; };
|
|
target = "root@${name}/var/src";
|
|
};
|
|
|
|
# usage: $(nix-build --no-out-link --argstr name HOSTNAME --argstr target PATH -A test)
|
|
test = { target }: pkgs.krops.writeTest "${name}-test" {
|
|
inherit target;
|
|
source = source { test = true; };
|
|
};
|
|
}
|