Compare commits
3 Commits
e2903036bc
...
8cdb19c60e
Author | SHA1 | Date | |
---|---|---|---|
8cdb19c60e | |||
1355d3b227 | |||
7017afd686 |
@ -53,6 +53,7 @@
|
||||
nil
|
||||
yaml-language-server
|
||||
lua-language-server
|
||||
clang-tools
|
||||
];
|
||||
home.sessionVariables.EDITOR = "nvim";
|
||||
}
|
||||
|
@ -121,9 +121,14 @@ lspconfig.tsserver.setup({
|
||||
},
|
||||
})
|
||||
|
||||
-- LSP: rust
|
||||
|
||||
lspconfig.rust_analyzer.setup {
|
||||
}
|
||||
|
||||
-- LSP: C/C++
|
||||
lspconfig.clangd.setup({})
|
||||
|
||||
-- Telescope
|
||||
require('telescope').setup({
|
||||
extensions = {
|
||||
|
14
system/libvirt.nix
Normal file
14
system/libvirt.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
virtualisation.libvirtd = {
|
||||
enable = true;
|
||||
qemu = {
|
||||
package = pkgs.qemu_kvm;
|
||||
runAsRoot = true;
|
||||
swtpm.enable = true;
|
||||
ovmf = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user