diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-03-06 09:34:57 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-03-06 12:00:17 -0600 |
| commit | 9561853d2c5c18749dd7d8d3eca25a360e2d8dfe (patch) | |
| tree | 697e4bfc4a1f14d72f082f11c7a7b92fdecd0061 /hosts/ganymede/config.nix | |
| parent | e4a00e31c5a0a343749963598fa5d7faa49d60c1 (diff) | |
Add copilot-api package and service
- Package copilot-api (GitHub Copilot API proxy) using bun
- Create systemd service module for copilot-api
- Enable service on ganymede listening on localhost:4141
- Add SSH port forwarding from mercury to ganymede for copilot-api
- Update gitignore to exclude Claude Code artifacts
Co-Authored-By: Claude (claude-sonnet-4.5) <noreply@anthropic.com>
Diffstat (limited to 'hosts/ganymede/config.nix')
| -rw-r--r-- | hosts/ganymede/config.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hosts/ganymede/config.nix b/hosts/ganymede/config.nix index b968e3f..70cbfb2 100644 --- a/hosts/ganymede/config.nix +++ b/hosts/ganymede/config.nix @@ -22,6 +22,11 @@ file = ./secrets/wireguard-pk.age; owner = "systemd-network"; }; + + "copilot-token" = { + file = ./secrets/copilot-token.age; + owner = "copilot-api"; + }; }; terminal = { @@ -112,6 +117,11 @@ enable = true; envFile = config.collinux.secrets."caddy-env".path; }; + + copilot-api = { + enable = true; + githubToken = config.collinux.secrets."copilot-token".path; + }; }; }; } |
