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