diff options
author | tv <tv@krebsco.de> | 2022-07-16 16:50:32 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2022-07-16 16:50:32 +0200 |
commit | 9c49e9aa24d7793e2dc99d00e9df04d65851a8ef (patch) | |
tree | 7fb8bb95ffad80a898204b7402a9928623ee39c3 | |
parent | 89e5e67659bbbf0da53cc2cc5dea644b9a2301f6 (diff) |
krops writeDeploy: add operation parameter
-rw-r--r-- | README.md | 8 | ||||
-rw-r--r-- | pkgs/krops/default.nix | 3 |
2 files changed, 8 insertions, 3 deletions
@@ -125,13 +125,17 @@ architecture. ### `fast` (optional, defaults to false) -Run `nixos-rebuild switch` immediately without building the system -in a dedicated `nix build` step. +Run `nixos-rebuild` immediately without building the system in a dedicated `nix +build` step. ### `force` (optional, defaults to false) Create the sentinel file (`/var/src/.populate`) before syncing the new source. +### `operation` (optional, defaults to "switch") + +Specifies which `nixos-rebuild` operation to perform. + ## writeTest Very similiar to writeDeploy, but just builds the system on the target without diff --git a/pkgs/krops/default.nix b/pkgs/krops/default.nix index 7fe8370..63d23dc 100644 --- a/pkgs/krops/default.nix +++ b/pkgs/krops/default.nix @@ -49,6 +49,7 @@ in crossDeploy ? false, fast ? null, force ? false, + operation ? "switch", source, target }: let @@ -65,7 +66,7 @@ in (populate { inherit backup force source; target = buildTarget'; })} ${populate { inherit backup force source; target = target'; }} ${rebuild ([ - "switch" + operation ] ++ lib.optionals crossDeploy [ "--no-build-nix" ] ++ lib.optionals (buildTarget' != target') [ |