Compare commits

..

No commits in common. "f17c9fde3fff9be4051d7c8bdeddd1d2e3eff8d0" and "3c730fb6f10a79adede40295554fb2badb9829a9" have entirely different histories.

View file

@ -16,7 +16,7 @@ proc nixCommand(cmd: string): string =
proc nixosConfigAttrs*(): seq[string] =
for host in getHosts():
result.add getFlake() & "#nixosConfigurations." & host & ".config.system.build.toplevel"
result.add fmt"{getFlake()}#nixosConfigurations.{host}.config.system.build.toplevel"
const nixosSubcmds* =
"""switch boot test build dry-build dry-activate edit
@ -254,11 +254,10 @@ proc nixBuildWithCache*(name: string, rest:seq[string], service: string, jobs: i
cmd.addArgs rest
let (path, _, buildCode) = runCmdCapt(cmd)
if buildCode != 0:
# TODO: propagate errors using nix log?
error "failed to build: " & drv
continue
outs &= path.strip().splitLines()
outs.add path
# TODO: propagate errors using nix log?
var cmd = service
cmd.addArg "push"