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

View file

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