Virt-manager: Difference between revisions
m link to libvirt article |
Added an explanation on how to config Virt-manager to be able to share folders with guest VM. |
||
| Line 37: | Line 37: | ||
By default this will enable the <code>virbr0</code> virtual network bridge. | By default this will enable the <code>virbr0</code> virtual network bridge. | ||
===Display=== | === Display === | ||
The default Video may not allow different resolutions, `Virtio` will allow for more. | The default Video may not allow different resolutions, `Virtio` will allow for more. | ||
=== Shared folders === | |||
To be able to share a folder with a guest, you will need 'virtiofsd'. The recommended way to solve this problem is now to add <code>pkgs.virtiofsd</code> to <code>virtualisation.libvirtd.qemu.vhostUserPackages</code>: | |||
<syntaxhighlight lang="nix"> | |||
virtualisation.libvirtd = { | |||
enable = true; | |||
qemu.vhostUserPackages = with pkgs; [ virtiofsd ]; | |||
}; | |||
</syntaxhighlight> | |||
===Windows Guest=== | ===Windows Guest=== | ||