mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Started reworking Zed config
This commit is contained in:
parent
48bdbe9fb8
commit
cb30d21ffd
@ -1 +1,4 @@
|
|||||||
# NixOSDots
|
# NixOSDots
|
||||||
|
|
||||||
|
My collection of nixOS and nixDarwin configuration
|
||||||
|
This is an early WIP, expect breaking changes.
|
||||||
|
|||||||
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
'';
|
'';
|
||||||
|
|||||||
@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user