14 lines
318 B
Nix
14 lines
318 B
Nix
{
|
|
deploy-rs,
|
|
flakeSelf,
|
|
writeShellApplication,
|
|
...
|
|
}:
|
|
writeShellApplication {
|
|
name = "deploy-qois";
|
|
meta.description = "Deploy configuration to specificed targets.";
|
|
runtimeInputs = [ deploy-rs ];
|
|
text = ''
|
|
deploy --remote-build --skip-checks --interactive --targets "''${@:-${flakeSelf}}"
|
|
'';
|
|
}
|