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
My collection of nixOS and nixDarwin configuration
This is an early WIP, expect breaking changes.

View File

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

View File

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

View File

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