feat: quemu libvirt virtualmanager

This commit is contained in:
s-prechtl 2024-11-30 16:48:38 +01:00
parent bc935b6a3a
commit fc87ad35f0
2 changed files with 4 additions and 1 deletions

View file

@ -156,6 +156,7 @@
tree-sitter tree-sitter
unzip unzip
usbutils usbutils
vencord
vim vim
waybar waybar
wdisplays wdisplays
@ -183,6 +184,7 @@
enableSSHSupport = true; enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt; pinentryPackage = pkgs.pinentry-qt;
}; };
virt-manager.enable = true;
wireshark.enable = true; wireshark.enable = true;
nix-ld = { nix-ld = {
enable = true; enable = true;
@ -200,6 +202,7 @@
}; };
virtualisation = { virtualisation = {
libvirtd.enable = true;
virtualbox = { virtualbox = {
host.enable = true; host.enable = true;
guest = { guest = {

View file

@ -23,7 +23,7 @@ in {
users.users.${cfg.username} = { users.users.${cfg.username} = {
isNormalUser = true; isNormalUser = true;
initialPassword = "12345"; initialPassword = "12345";
extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers"]; extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers" "libvirtd"];
description = "Stefan"; description = "Stefan";
shell = pkgs.zsh; shell = pkgs.zsh;
}; };