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

@ -82,31 +82,5 @@
# EDITOR = "emacs";
};
};
user = {
continue = {
enable = true;
docs = {
"Continue Docs" = {
startUrl = "https://docs.continue.dev";
};
"Nixpkgs" = {
startUrl = "https://ryantm.github.io/nixpkgs/#preface";
};
"Nix Manual" = {
startUrl = "https://nixos.org/manual/nixos/stable/";
};
"Home manager Manual" = {
startUrl = "https://nix-community.github.io/home-manager/";
};
"Nix Docs" = {
startUrl = "https://nix.dev/index.html";
};
"Linux Man Page" = {
startUrl = "https://linux.die.net/man/";
};
};
};
};
};
}

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
])
])
)
);
};