aboutsummaryrefslogtreecommitdiff
path: root/modules/services/options.nix
diff options
context:
space:
mode:
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;
- };
- };
};
}