infrastructure/packages/deploy-qois/default.nix
Fabian Hauser 86a3ffc42d
All checks were successful
CI / build (push) Successful in 1m38s
Add flags to deploy-qois
2025-03-31 15:02:18 +03:00

14 lines
318 B
Nix

{
deploy-rs,
flakeSelf,
writeShellApplication,
...
}:
writeShellApplication {
name = "deploy-qois";
meta.description = "Deploy configuration to specificed targets.";
runtimeInputs = [ deploy-rs ];
text = ''
deploy --remote-build --skip-checks --interactive --targets "''${@:-${flakeSelf}}"
'';
}