diff --git a/docs/libvirt.md b/docs/libvirt.md
index 992819e..3865044 100644
--- a/docs/libvirt.md
+++ b/docs/libvirt.md
@@ -52,6 +52,19 @@ Together, these components form a powerful and flexible virtualization stack, wi
sudo reboot # Reboot the system to ensure the user is added to the relevant groups.
```
+ Note: Due to a known bug in `rpm-ostree`, which affects various distributions such as Silverblue, Bazzite, Bluefin, Kinoite, Aurora, UCore, and others, the commands provided earlier may not properly add your user to all required groups. If the `groups $USER` command does not show your user as being part of the necessary groups, you'll need to manually add these groups to `/etc/group` if they are present in `/usr/lib/group`.
+
+ To resolve this:
+ 1. Identify which groups are missing from the output of `groups $USER`.
+ 2. Use the following snippet to add each missing group to `/etc/group`. Ensure you replace "kvm" with the name of the missing group.
+
+ ```bash
+ grep -E '^kvm:' /usr/lib/group | sudo tee -a /etc/group
+ sudo usermod -aG kvm $USER
+ ```
+
+ 3. Reboot your system to ensure that the user is correctly added to the relevant groups.
+
6. If relevant to your distribution, disable `AppArmor` for the `libvirt` daemon.
``` bash
sudo ln -s /etc/apparmor.d/usr.sbin.libvirtd /etc/apparmor.d/disable/ # Disable AppArmor for the libvirt daemon by creating a symbolic link.
@@ -583,21 +596,20 @@ Once you get to the point of selecting the location for installation, you will s
@@ -668,6 +680,59 @@ Scroll down to `Remote Desktop`, and enable `Enable Remote Desktop`.
At this point, you will need to restart the Windows virtual machine.
+## (Optional) Configuring a Fallback Shared Folder
+When connecting to Windows through FreeRDP, your home folder will be shared automatically. However, this sharing setup does not apply when using Windows via virt-manager. To configure a fallback shared folder, follow these steps:
+
+1. Navigate to "Virtual Hardware Details", then "Memory" and then check the box for "Enable shared memory".
+
+2. Add filesystem hardware by going to "Virtual Hardware Details" and selecting "Add Hardware" followed by "Filesystem". Choose `virtiofs` as the driver, enter the path to the shared folder, and provide a name for the shared folder in the target path (e.g., "Windows Shared Folder").
+
+3. Install [`WinFSP`](https://github.com/winfsp/winfsp/releases/) on Windows.
+
+4. Enable and start a 'VirtIO Filesystem' service within Windows by running the following commands within a PowerShell prompt.
+ ```PowerShell
+ sc.exe create VirtioFsSvc binpath= "C:\Program Files\Virtio-Win\VioFS\virtiofs.exe" start=auto depend="WinFsp.Launcher/VirtioFsDrv" DisplayName="Virtio Filesystem Service"
+ sc.exe start VirtioFsSvc
+ ```
+
+5. Reboot Windows.
+
+## (Optional) Configuring a Static IP Address
+1. Identify the Windows MAC address.
+ ```bash
+ virsh dumpxml "RDPWindows" | grep "mac address"
+ ```
+
+2. Edit the virtual network configuration.
+ 1. Identify the correct network name.
+ ```bash
+ virsh net-list # Will likely return "default"
+ ```
+
+ 2. Edit the configuration file.
+ ```bash
+ virsh net-edit "default" # Replace "default" with the appropriate network name if different
+ ```
+
+ 3. Update the `