diff options
| author | lassulus <lass@blue.r> | 2018-10-23 15:45:38 +0200 |
|---|---|---|
| committer | lassulus <lass@blue.r> | 2018-10-23 15:45:38 +0200 |
| commit | fc799f61f17014e61f5bd602c5e44f7412660c28 (patch) | |
| tree | ea5ac7f06e2b3370f029c858a3dbccaf1d16f530 | |
| parent | 153648682697aafe89ef7eb69805ae8e6a25bc39 (diff) | |
l krops: add optional target argument to deploy
| -rw-r--r-- | lass/krops.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lass/krops.nix b/lass/krops.nix index 13b10e253..a898164c3 100644 --- a/lass/krops.nix +++ b/lass/krops.nix @@ -22,9 +22,9 @@ in { # usage: $(nix-build --no-out-link --argstr name HOSTNAME -A deploy) - deploy = pkgs.krops.writeDeploy "${name}-deploy" { + deploy = { target ? "root@${name}/var/src" }: pkgs.krops.writeDeploy "${name}-deploy" { source = source { test = false; }; - target = "root@${name}/var/src"; + inherit target; }; # usage: $(nix-build --no-out-link --argstr name HOSTNAME --argstr target PATH -A test) |
