mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
45 lines
665 B
Nix
45 lines
665 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
extensions = [
|
|
"nix"
|
|
"rust"
|
|
|
|
"rosé pine"
|
|
"catpuccin blur"
|
|
|
|
"typescript"
|
|
"javascript"
|
|
"html"
|
|
"css"
|
|
|
|
"go"
|
|
"python"
|
|
|
|
"json"
|
|
"yaml"
|
|
"toml"
|
|
|
|
"markdown"
|
|
];
|
|
extraPackages = [ pkgs.nixd ];
|
|
|
|
userSettings = {
|
|
theme = {
|
|
mode = "system";
|
|
dark = "Catppuccin Frappé (Blur)";
|
|
light = "Rosé Pine Dawn";
|
|
};
|
|
hour_format = "hour24";
|
|
language_models = {
|
|
ollama = {
|
|
api_url = "http://localhost:11434";
|
|
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|