Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-05 02:03:27 +02:00
parent f3faf4d4b6
commit cddf5f019f
22 changed files with 128 additions and 149 deletions

View File

@@ -5,12 +5,21 @@
"nix.enableLanguageServer" = true;
"nix.serverPath" = lib.meta.getExe pkgs.nil;
"nix.serverSettings" = {
nil.formatting.command = [
(lib.meta.getExe pkgs.nix)
"fmt"
"--"
"--"
];
nil = {
formatting.command = [
(lib.meta.getExe pkgs.nix)
"fmt"
"--"
"--"
];
nix = {
maxMemoryMB = 4096;
flake = {
autoArchive = true;
autoEvalInputs = true;
};
};
};
};
};