fix: systems need openssh for deployment reasons [deploy]
All checks were successful
/ check (push) Successful in 1m2s
/ deploy (push) Successful in 1m19s

This commit is contained in:
Jermeiah S 2025-06-25 18:50:21 -04:00
parent 83469322e6
commit a445c46ea0
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -47,6 +47,7 @@ in
]; ];
tokenFile = config.sops.secrets.forgejo-runners-token.path; tokenFile = config.sops.secrets.forgejo-runners-token.path;
hostPackages = with pkgs; [ hostPackages = with pkgs; [
openssh
nix nix
opentofu opentofu
nodejs nodejs

View file

@ -16,6 +16,7 @@
enable = true; enable = true;
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
openssh
git git
deploy-rs deploy-rs
]; ];