aboutsummaryrefslogtreecommitdiff
path: root/modules/home/cli/opencode
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/cli/opencode')
-rw-r--r--modules/home/cli/opencode/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/home/cli/opencode/default.nix b/modules/home/cli/opencode/default.nix
deleted file mode 100644
index 48be861..0000000
--- a/modules/home/cli/opencode/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- config,
- lib,
- ...
-}:
-let
- cfg = config.nx.cli.opencode;
- inherit (lib) mkEnableOption mkIf;
-in
-{
-
- options.nx.cli.opencode = {
- enable = mkEnableOption "opencode open source ai coding agent";
- };
-
- config = mkIf cfg.enable {
- programs.opencode = {
- enable = true;
- settings = {
- theme = "system";
- share = "disabled";
- autoupdate = false;
- };
- };
- };
-}