15 lines
269 B
Nix
15 lines
269 B
Nix
|
{
|
||
|
pkgs,
|
||
|
self,
|
||
|
system,
|
||
|
...
|
||
|
}:
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "deploy-qois";
|
||
|
meta.description = "Deploy configuration to specificed targets.";
|
||
|
runtimeInputs = [ pkgs.deploy-rs ];
|
||
|
text = ''
|
||
|
deploy --interactive --targets "''${@:-${self}}"
|
||
|
'';
|
||
|
}
|