Compare commits

..

No commits in common. "8cdb19c60e38c003c87b379d6f5d1bb1c2b1c0f5" and "e2903036bcb27f1ffad81471bf75072392a69add" have entirely different histories.

3 changed files with 0 additions and 20 deletions

View File

@ -53,7 +53,6 @@
nil nil
yaml-language-server yaml-language-server
lua-language-server lua-language-server
clang-tools
]; ];
home.sessionVariables.EDITOR = "nvim"; home.sessionVariables.EDITOR = "nvim";
} }

View File

@ -121,14 +121,9 @@ lspconfig.tsserver.setup({
}, },
}) })
-- LSP: rust
lspconfig.rust_analyzer.setup { lspconfig.rust_analyzer.setup {
} }
-- LSP: C/C++
lspconfig.clangd.setup({})
-- Telescope -- Telescope
require('telescope').setup({ require('telescope').setup({
extensions = { extensions = {

View File

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
virtualisation.libvirtd = {
enable = true;
qemu = {
package = pkgs.qemu_kvm;
runAsRoot = true;
swtpm.enable = true;
ovmf = {
enable = true;
};
};
};
}