infrastructure/packages/deploy-qois/default.nix

15 lines
279 B
Nix
Raw Normal View History

2024-10-02 15:52:04 +02:00
{
deploy-rs,
2024-10-02 15:52:04 +02:00
self,
writeShellApplication,
2024-10-02 15:52:04 +02:00
...
}:
writeShellApplication {
2024-10-02 15:52:04 +02:00
name = "deploy-qois";
meta.description = "Deploy configuration to specificed targets.";
runtimeInputs = [ deploy-rs ];
2024-10-02 15:52:04 +02:00
text = ''
deploy --interactive --targets "''${@:-${self}}"
'';
}