mirror of
https://cgit.krebsco.de/krops
synced 2024-11-23 03:29:48 +01:00
writeDeploy: fancy output with nix build
This commit is contained in:
parent
219e5aa008
commit
ee41207df1
1 changed files with 19 additions and 0 deletions
|
@ -4,6 +4,24 @@ in
|
|||
|
||||
{ exec, nix, openssh, populate, writeDash }: rec {
|
||||
|
||||
build = target:
|
||||
exec "rebuild.${target.host}" rec {
|
||||
filename = "${openssh}/bin/ssh";
|
||||
argv = [
|
||||
filename
|
||||
"-l" target.user
|
||||
"-p" target.port
|
||||
"-t"
|
||||
target.host
|
||||
(lib.concatStringsSep " " [
|
||||
"nix build"
|
||||
"-I ${lib.escapeShellArg target.path}"
|
||||
"--no-link -f '<nixpkgs/nixos>'"
|
||||
"config.system.build.toplevel"
|
||||
])
|
||||
];
|
||||
};
|
||||
|
||||
rebuild = args: target:
|
||||
exec "rebuild.${target.host}" rec {
|
||||
filename = "${openssh}/bin/ssh";
|
||||
|
@ -24,6 +42,7 @@ in
|
|||
writeDash name ''
|
||||
set -efu
|
||||
${populate { inherit force source; target = target'; }}
|
||||
${build target'}
|
||||
${rebuild ["switch"] target'}
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue