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.
This commit is contained in:
NotAShelf 2024-04-23 12:28:19 +03:00
parent 64c7e428de
commit 29f55e258a
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
1 changed files with 2 additions and 2 deletions

View File

@ -227,9 +227,9 @@ inputs: let
};
assistant = {
chatgpt.enable = isMaximal;
chatgpt.enable = false;
copilot = {
enable = isMaximal;
enable = false;
cmp.enable = isMaximal;
};
};