infrastructure/packages/deploy-qois.nix

15 lines
269 B
Nix
Raw Normal View History

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