mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Switch to the nix lang server nixd
This commit is contained in:
parent
55fefe17a5
commit
3a9a3b9e6d
1 changed files with 1 additions and 3 deletions
|
|
@ -8,8 +8,6 @@
|
||||||
options.myConfig.vscode.enable = lib.mkEnableOption "";
|
options.myConfig.vscode.enable = lib.mkEnableOption "";
|
||||||
|
|
||||||
config = lib.mkIf config.myConfig.vscode.enable {
|
config = lib.mkIf config.myConfig.vscode.enable {
|
||||||
home.packages = [pkgs.nil];
|
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
@ -44,7 +42,7 @@
|
||||||
"git.autofetch" = true;
|
"git.autofetch" = true;
|
||||||
"git.confirmSync" = false;
|
"git.confirmSync" = false;
|
||||||
"nix.enableLanguageServer" = true;
|
"nix.enableLanguageServer" = true;
|
||||||
"nix.serverPath" = "nil";
|
"nix.serverPath" = "${lib.getExe pkgs.nixd}";
|
||||||
"update.mode" = "none";
|
"update.mode" = "none";
|
||||||
"git.suggestSmartCommit" = false;
|
"git.suggestSmartCommit" = false;
|
||||||
"workbench.sideBar.location" = "right";
|
"workbench.sideBar.location" = "right";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue