infrastructure/packages/deploy-qois.nix
Fabian Hauser fef2377502
All checks were successful
CI / build (push) Successful in 13m53s
Commit files for public release
2024-10-02 16:57:36 +03:00

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}}"
'';
}