From 29f55e258adf0e434211a0d5084b22c3de6fc6a3 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 23 Apr 2024 12:28:19 +0300 Subject: [PATCH] configuration.nix: disable assistant plugins in maximal mode They require subscriptions to work as intended. If a user has a subscription, they may enable it explicitly. --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index f77345e..8616bc1 100644 --- a/configuration.nix +++ b/configuration.nix @@ -227,9 +227,9 @@ inputs: let }; assistant = { - chatgpt.enable = isMaximal; + chatgpt.enable = false; copilot = { - enable = isMaximal; + enable = false; cmp.enable = isMaximal; }; };