aboutsummaryrefslogtreecommitdiff
path: root/modules/services/options.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-03-31 15:47:10 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-03-31 15:48:14 -0500
commit2c44fddcb44e013114c8d0d9a669c0ec91d4d7b8 (patch)
tree68db30484538469f6c055075cb69e836564a3e5a /modules/services/options.nix
parentc759c4772f0ca40a379cd19e63d3343b1e23714a (diff)
no more copilot-api
Diffstat (limited to 'modules/services/options.nix')
-rw-r--r--modules/services/options.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/services/options.nix b/modules/services/options.nix
index 70fd695..0484b6b 100644
--- a/modules/services/options.nix
+++ b/modules/services/options.nix
@@ -157,24 +157,5 @@ in {
example = "/run/secrets.d/caddy-env";
};
};
-
- copilot-api = {
- enable = mkEnableOption "GitHub Copilot API proxy";
- listenAddr = mkOption {
- description = "Address to listen on";
- type = ipAddr;
- default = "127.0.0.1";
- };
- port = mkOption {
- description = "Port to listen on";
- type = types.port;
- default = 4141;
- };
- githubToken = mkOption {
- description = "Path to file containing GitHub token";
- type = types.nullOr types.str;
- default = null;
- };
- };
};
}