14 lines
269 B
Nix
14 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}}"
|
|
'';
|
|
}
|