This commit is contained in:
nora 2023-06-21 19:28:34 +02:00
parent 579a40cfec
commit 17058994a8

View file

@ -139,7 +139,7 @@
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect # TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
]; ];
extraGroups = [ "wheel" "networkmanager" "audio" ]; extraGroups = [ "wheel" "networkmanager" "audio" "libvirtd" ];
# TODO: This is mostly temporary until home-manager works nicely # TODO: This is mostly temporary until home-manager works nicely
packages = with pkgs; [ packages = with pkgs; [
firefox firefox
@ -182,6 +182,7 @@
}).run }).run
# Wine for 32 and 64 bit applications # Wine for 32 and 64 bit applications
wineWowPackages.stable wineWowPackages.stable
virt-manager
]; ];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
@ -210,6 +211,7 @@
enableExtensionPack = true; enableExtensionPack = true;
}; };
}; };
libvirtd.enable = true;
}; };