From c9df7325a1ecd9e6049bc21726fbb3ccd817babb Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 26 May 2024 15:31:35 -0400 Subject: [PATCH] add nixd --- .vscode/settings.json | 5 +++-- flake.nix | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ab7e433..9d12b5c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,7 @@ { - "nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix", "editor.defaultFormatter": "B4dM4n.nixpkgs-fmt", "editor.formatOnSave": true, - "editor.formatOnType": true + "editor.formatOnType": true, + "nix.enableLanguageServer": true, + "nix.serverPath": "nixd" } \ No newline at end of file diff --git a/flake.nix b/flake.nix index 00fe592..a5d8240 100644 --- a/flake.nix +++ b/flake.nix @@ -122,6 +122,7 @@ packages = with pkgs; [ just colmena + nixd ]; }; };