removed continue vscode plugin

This commit is contained in:
Leyla Becker 2025-07-12 11:53:53 -05:00
parent c863b8c4b5
commit 1d7e0d11f0
4 changed files with 3 additions and 105 deletions

View file

@ -6,7 +6,7 @@
...
}: let
nix-development-enabled = osConfig.host.nix-development.enable;
ai-tooling-enabled = config.user.continue.enable && osConfig.host.ai.enable;
ai-tooling-enabled = osConfig.host.ai.enable;
in {
config = lib.mkIf config.user.isDesktopUser {
programs = {
@ -46,8 +46,7 @@ in {
};
})
(lib.mkIf ai-tooling-enabled {
"continue.telemetryEnabled" = false;
})
})
];
extensions = let
@ -98,8 +97,7 @@ in {
karyfoundation.nearley
]
++ (lib.lists.optionals ai-tooling-enabled [
continue.continue
])
])
)
);
};