infrastructure/packages/auto-deploy/default.nix
Fabian Hauser cb25445e23
All checks were successful
CI / build (push) Successful in 5m3s
WIP: Create script to deploy in CI
2025-04-19 16:22:20 +03:00

16 lines
266 B
Nix

{
deploy-rs,
gitMinimal,
writeShellApplication,
lib,
...
}:
writeShellApplication {
name = "auto-deploy";
meta.description = "Deploy machines automatically.";
runtimeInputs = [
deploy-rs
gitMinimal
];
text = lib.readFile ./script.bash;
}