diff options
author | tv <tv@krebsco.de> | 2022-08-23 14:16:39 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2022-08-23 14:16:39 +0200 |
commit | 625bd446dd7238c5226dc90c89bdfa4ee5c13688 (patch) | |
tree | 3bb8a88a8793652a07576266be3685f4dc736eed /README.md | |
parent | 3aa04be96f19cc5f4866b2b36a351f88f6667bd2 (diff) |
krops writeDeploy: add useNixOutputMonitor parameter1.28.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -136,6 +136,29 @@ Create the sentinel file (`/var/src/.populate`) before syncing the new source. Specifies which `nixos-rebuild` operation to perform. +### `useNixOutputMonitor` (optional, defaults to `"opportunistic"`) + +Specifies when to pipe `nixos-rebuild`'s output to +[nom](https://github.com/maralorn/nix-output-monitor). + +Supported values: + +* `"opportunistic"` (default) - + Use `nom` only if it is present on the target machine. + +* `"optimistic"` - + Use `nom`, assuming it is present on the target machine. + +* `"pessimistic"` - + Use `nom` via `nix-shell` on the target machine. + +* `true` - + Use `nom`. + If it is not present on the target machine, then use it via `nix-shell`. + +* `false` - + Don't use `nom` + ## writeTest Very similiar to writeDeploy, but just builds the system on the target without |