feat: add 'nixd' as nix lsp to vscode

This commit is contained in:
Dmitriy Kholkin 2025-03-02 14:32:09 +03:00
parent 295cfa4c67
commit 6e7d63bbfd
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 30 additions and 1 deletions

25
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,25 @@
{
"files.eol": "\n",
"[nix]": {
"editor.tabSize": 2
},
"nix.enableLanguageServer": true,
"nix.serverPath": "nixd",
"nix.serverSettings": {
"nixd": {
"formatting": {
"command": [
"nixfmt"
],
},
"options": {
"nixos": {
"expr": "(builtins.getFlake \"${workspaceFolder}\").nixosConfigurations.NixOS-VM.options",
},
// "home-manager": {
// "expr": "(builtins.getFlake \"${workspaceFolder}\").homeConfigurations.NixOS-VM.options",
// },
},
},
}
}

View File

@ -88,7 +88,11 @@
name = "nixos-config";
packages = builtins.attrValues {
inherit (pkgs) nixfmt-rfc-style git sops;
inherit (pkgs) nixfmt-rfc-style sops;
};
languages.nix = {
enable = true;
lsp.package = pkgs.nixd;
};
pre-commit.hooks = {
actionlint.enable = true;