85 lines
1.9 KiB
Nix
Raw Normal View History

2025-01-28 09:57:26 +01:00
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.features.desktop.office;
in {
options.features.desktop.coding.enable =
mkEnableOption "install coding related stuff";
config = mkIf cfg.enable {
home.packages = with pkgs; [
bruno
insomnia
];
programs.zed-editor = {
enable = true;
userSettings = {
features = {
copilot = false;
2025-01-24 14:54:19 +01:00
};
2025-01-28 09:57:26 +01:00
telemetry = {
metrics = false;
};
lsp = {
rust_analyzer = {
binary = {path_lookup = true;};
2025-01-24 14:54:19 +01:00
};
};
2025-01-28 09:57:26 +01:00
languages = {
Nix = {
language_servers = ["nixd"];
formatter = {
external = {
command = "alejandra";
arguments = ["-q" "-"];
};
};
};
Python = {
language_servers = ["pyright"];
formatter = {
external = {
command = "black";
arguments = ["-"];
};
2025-01-24 14:54:19 +01:00
};
};
};
2025-01-28 09:57:26 +01:00
assistant = {
version = "2";
default_model = {
provider = "zed.dev";
model = "claude-3-5-sonnet-latest";
};
2025-01-24 14:54:19 +01:00
};
2025-01-28 09:57:26 +01:00
language_models = {
anthropic = {
version = "1";
api_url = "https://api.anthropic.com";
};
openai = {
version = "1";
api_url = "https://api.openai.com/v1";
};
ollama = {
api_url = "http://localhost:11434";
};
2025-01-24 14:54:19 +01:00
};
2025-01-28 09:57:26 +01:00
auto_update = false;
format_on_save = "on";
vim_mode = true;
load_direnv = "shell_hook";
theme = "Dracula";
buffer_font_family = "FiraCode Nerd Font";
ui_font_size = 16;
buffer_font_size = 16;
2025-01-24 14:54:19 +01:00
};
};
};
2024-10-20 00:30:58 +02:00
}