This commit introduces a new option for the Opencode web service to allow configuring an environment file so that we can safely specify an `OPENCODE_SERVER_PASSWORD` environment variable to secure access to the service without exposing the secret to the Nix store.
29 lines
1.4 KiB
Nix
29 lines
1.4 KiB
Nix
{
|
|
opencode-settings = ./settings.nix;
|
|
opencode-empty-settings = ./empty-settings.nix;
|
|
opencode-rules-inline = ./rules-inline.nix;
|
|
opencode-rules-path = ./rules-path.nix;
|
|
opencode-empty-rules = ./empty-rules.nix;
|
|
opencode-agents-inline = ./agents-inline.nix;
|
|
opencode-commands-inline = ./commands-inline.nix;
|
|
opencode-agents-path = ./agents-path.nix;
|
|
opencode-commands-path = ./commands-path.nix;
|
|
opencode-agents-bulk-directory = ./agents-bulk-directory.nix;
|
|
opencode-commands-bulk-directory = ./commands-bulk-directory.nix;
|
|
opencode-tools-inline = ./tools-inline.nix;
|
|
opencode-tools-path = ./tools-path.nix;
|
|
opencode-tools-bulk-directory = ./tools-bulk-directory.nix;
|
|
opencode-mixed-content = ./mixed-content.nix;
|
|
opencode-skills-inline = ./skills-inline.nix;
|
|
opencode-skills-path = ./skills-path.nix;
|
|
opencode-skills-store-path = ./skills-store-path.nix;
|
|
opencode-skills-directory = ./skills-directory.nix;
|
|
opencode-skills-bulk-directory = ./skills-bulk-directory.nix;
|
|
opencode-themes-inline = ./themes-inline.nix;
|
|
opencode-themes-path = ./themes-path.nix;
|
|
opencode-themes-bulk-directory = ./themes-bulk-directory.nix;
|
|
opencode-mcp-integration = ./mcp-integration.nix;
|
|
opencode-mcp-integration-with-override = ./mcp-integration-with-override.nix;
|
|
opencode-web-service = ./web-service.nix;
|
|
opencode-web-service-environment-file = ./web-service-environment-file.nix;
|
|
}
|