mirror of
https://cgit.krebsco.de/krops
synced 2024-11-23 03:29:48 +01:00
Merge remote-tracking branch 'prism/master'
This commit is contained in:
commit
3aa04be96f
2 changed files with 7 additions and 2 deletions
|
@ -156,6 +156,10 @@ below `/var/src`, and executes `NIX_PATH=/var/src nix-build -A system '<nixpkgs/
|
|||
|
||||
[see `writeDeploy`](#writeDeploy)
|
||||
|
||||
### `trace` (optional, defaults to false)
|
||||
|
||||
run nix-build with `--show-trace`
|
||||
|
||||
## writeCommand
|
||||
|
||||
This can be used to run other commands than `nixos-rebuild` or pre/post build hooks.
|
||||
|
|
|
@ -82,7 +82,8 @@ in
|
|||
backup ? false,
|
||||
force ? false,
|
||||
source,
|
||||
target
|
||||
target,
|
||||
trace ? false
|
||||
}: let
|
||||
target' = lib.mkTarget target;
|
||||
in
|
||||
|
@ -95,7 +96,7 @@ in
|
|||
-A system \
|
||||
--keep-going \
|
||||
--no-out-link \
|
||||
--show-trace \
|
||||
${lib.optionalString trace "--show-trace"} \
|
||||
'<nixpkgs/nixos>'
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue