Started reworking Zed config

This commit is contained in:
Alexandre1a 2025-12-30 10:34:08 +01:00
parent 48bdbe9fb8
commit cb30d21ffd
No known key found for this signature in database
GPG Key ID: CE01C28FBC5EEF10
4 changed files with 20 additions and 6 deletions

View File

@ -1 +1,4 @@
# NixOSDots # NixOSDots
My collection of nixOS and nixDarwin configuration
This is an early WIP, expect breaking changes.

View File

@ -5,7 +5,7 @@
imports = [ imports = [
inputs.spicetify-nix.homeManagerModules.spicetify inputs.spicetify-nix.homeManagerModules.spicetify
../../modules/home-manager/spicetify.nix ../../modules/home-manager/spicetify.nix
../../modules/common/zed2.nix ../../modules/home-manager/zed.nix
]; ];

View File

@ -3,7 +3,6 @@
programs.ssh = { programs.ssh = {
startAgent = true; startAgent = true;
extraConfig = '' extraConfig = ''
# Test if github.com works with ssh for cloning
Host github.com Host github.com
IdentityFile ~/.ssh/github IdentityFile ~/.ssh/github
''; '';

View File

@ -5,22 +5,34 @@
enable = true; enable = true;
extensions = [ extensions = [
"nix" "nix"
"rosé pine"
"rust" "rust"
"rosé pine"
"typescript" "typescript"
"python"
"javascript" "javascript"
"html" "html"
"css" "css"
"markdown"
"go"
"python"
"json" "json"
"yaml" "yaml"
"go" "toml"
"markdown"
]; ];
extraPackages = [ pkgs.nixd ]; extraPackages = [ pkgs.nixd ];
userSettings = { userSettings = {
theme = "Dracula"; theme = "Dracula";
language_models = {
ollama = {
api_url = http://localhost:11434";
auto_discover = true;
};
};
}; };
}; };
} }