Compare commits

...

2 commits

2 changed files with 16 additions and 0 deletions

View file

@ -130,5 +130,12 @@ lspconfig.nixd.setup({
},
},
})
lspconfig.rust_analyzer.setup({
settings = {
["rust-analyzer"] = {
check = { command = "clippy" },
},
},
})
require("gitsigns").setup()

View file

@ -16,6 +16,15 @@
enable = true;
defaultUser = "leo";
useWindowsDriver = true;
interop.includePath = false;
extraBin = [
{
name = "code";
src = lib.escapeShellArg "/mnt/c/Users/Leo/AppData/Local/Programs/Microsoft VS Code/bin/code";
}
];
wslConf.network = {
hostname = config.networking.hostName;
generateResolvConf = false;