mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
switched to pipewire from pulseaudio
and tweaked vm perfomance
This commit is contained in:
parent
5efa72bfba
commit
8467f78df9
2 changed files with 167 additions and 180 deletions
|
|
@ -18,7 +18,7 @@
|
||||||
keep-outputs = false
|
keep-outputs = false
|
||||||
keep-derivations = false
|
keep-derivations = false
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
networking = {
|
networking = {
|
||||||
firewall.enable = true;
|
firewall.enable = true;
|
||||||
|
|
@ -38,32 +38,35 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = [
|
servers = [
|
||||||
"time.google.com"
|
"time.google.com"
|
||||||
"time2.google.com"
|
"time2.google.com"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
console = {
|
console = {
|
||||||
font = "Lat2-Terminus16";
|
font = "Lat2-Terminus16";
|
||||||
useXkbConfig = true;
|
useXkbConfig = true;
|
||||||
};
|
};
|
||||||
|
#pipewire sound
|
||||||
|
sound.enable = false;
|
||||||
|
|
||||||
# Enable sound.
|
# rtkit is optional but recommended
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
hardware.pulseaudio = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
support32Bit = true;
|
alsa.enable = true;
|
||||||
package = pkgs.pulseaudioFull;
|
alsa.support32Bit = true;
|
||||||
|
pulse.enable = true;
|
||||||
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
|
#enable ssh
|
||||||
#enable ssh
|
programs = {
|
||||||
programs = {
|
mtr.enable = true;
|
||||||
mtr.enable = true;
|
gnupg.agent = {
|
||||||
gnupg.agent = {
|
enable = true;
|
||||||
enable = true;
|
enableSSHSupport = true;
|
||||||
enableSSHSupport = true;
|
};
|
||||||
};
|
};
|
||||||
};
|
services.openssh.enable = true;
|
||||||
services.openssh.enable = true;
|
}
|
||||||
}
|
|
||||||
|
|
|
||||||
310
misc/Windows.xml
310
misc/Windows.xml
|
|
@ -1,219 +1,203 @@
|
||||||
<domain type='kvm'>
|
<domain xmlns:qemu="http://libvirt.org/schemas/domain/qemu/1.0" type="kvm">
|
||||||
<name>Windows</name>
|
<name>Windows</name>
|
||||||
<uuid>60d8329e-8670-f8bb-4a7d-04d9f51eff76</uuid>
|
<uuid>60d8329e-8670-f8bb-4a7d-04d9f51eff76</uuid>
|
||||||
<metadata>
|
<memory unit="KiB">16777216</memory>
|
||||||
<libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0">
|
<currentMemory unit="KiB">16777216</currentMemory>
|
||||||
<libosinfo:os id="http://microsoft.com/win/10"/>
|
<vcpu placement="static" cpuset="3-5,9-11">6</vcpu>
|
||||||
</libosinfo:libosinfo>
|
|
||||||
</metadata>
|
|
||||||
<memory unit='KiB'>16384000</memory>
|
|
||||||
<currentMemory unit='KiB'>16384000</currentMemory>
|
|
||||||
<memoryBacking>
|
|
||||||
<source type='memfd'/>
|
|
||||||
<access mode='shared'/>
|
|
||||||
</memoryBacking>
|
|
||||||
<vcpu placement='static' cpuset='3-5,9-11'>6</vcpu>
|
|
||||||
<cputune>
|
<cputune>
|
||||||
<vcpupin vcpu='0' cpuset='3'/>
|
<vcpupin vcpu="0" cpuset="3"/>
|
||||||
<vcpupin vcpu='1' cpuset='4'/>
|
<vcpupin vcpu="1" cpuset="9"/>
|
||||||
<vcpupin vcpu='2' cpuset='5'/>
|
<vcpupin vcpu="2" cpuset="4"/>
|
||||||
<vcpupin vcpu='3' cpuset='9'/>
|
<vcpupin vcpu="3" cpuset="10"/>
|
||||||
<vcpupin vcpu='4' cpuset='10'/>
|
<vcpupin vcpu="4" cpuset="5"/>
|
||||||
<vcpupin vcpu='5' cpuset='11'/>
|
<vcpupin vcpu="5" cpuset="11"/>
|
||||||
<emulatorpin cpuset='3-5,9-11'/>
|
<emulatorpin cpuset="0-2,6-8"/>
|
||||||
</cputune>
|
</cputune>
|
||||||
<os>
|
<os>
|
||||||
<type arch='x86_64' machine='pc-q35-7.0'>hvm</type>
|
<type arch="x86_64" machine="pc-q35-7.1">hvm</type>
|
||||||
<loader readonly='yes' type='pflash'>/run/libvirt/nix-ovmf/OVMF_CODE.fd</loader>
|
<loader readonly="yes" type="pflash">/run/libvirt/nix-ovmf/OVMF_CODE.fd</loader>
|
||||||
<nvram>/var/lib/libvirt/qemu/nvram/Windows_VARS.fd</nvram>
|
<nvram>/var/lib/libvirt/qemu/nvram/Windows_VARS.fd</nvram>
|
||||||
<boot dev='hd'/>
|
<boot dev="hd"/>
|
||||||
<bootmenu enable='no'/>
|
<bootmenu enable="no"/>
|
||||||
</os>
|
</os>
|
||||||
<features>
|
<features>
|
||||||
<acpi/>
|
<acpi/>
|
||||||
<apic/>
|
<apic/>
|
||||||
<hyperv mode='custom'>
|
<hyperv mode="custom">
|
||||||
<relaxed state='on'/>
|
<relaxed state="on"/>
|
||||||
<vapic state='on'/>
|
<vapic state="on"/>
|
||||||
<spinlocks state='on' retries='8191'/>
|
<spinlocks state="on" retries="8191"/>
|
||||||
<vpindex state='on'/>
|
<vpindex state="on"/>
|
||||||
<runtime state='on'/>
|
<runtime state="on"/>
|
||||||
<synic state='on'/>
|
<synic state="on"/>
|
||||||
<stimer state='on'/>
|
<stimer state="on"/>
|
||||||
<reset state='off'/>
|
<reset state="off"/>
|
||||||
<vendor_id state='on' value='abcdefghijkl'/>
|
<vendor_id state="on" value="abcdefghijkl"/>
|
||||||
<frequencies state='on'/>
|
<frequencies state="on"/>
|
||||||
<reenlightenment state='off'/>
|
<reenlightenment state="off"/>
|
||||||
<tlbflush state='on'/>
|
<tlbflush state="on"/>
|
||||||
<ipi state='on'/>
|
<ipi state="on"/>
|
||||||
<evmcs state='off'/>
|
<evmcs state="off"/>
|
||||||
</hyperv>
|
</hyperv>
|
||||||
<kvm>
|
<kvm>
|
||||||
<hidden state='on'/>
|
<hidden state="on"/>
|
||||||
</kvm>
|
</kvm>
|
||||||
<vmport state='off'/>
|
<vmport state="off"/>
|
||||||
<ioapic driver='kvm'/>
|
<ioapic driver="kvm"/>
|
||||||
</features>
|
</features>
|
||||||
<cpu mode='host-passthrough' check='none' migratable='on'>
|
<cpu mode="host-passthrough" check="none" migratable="off">
|
||||||
<topology sockets='1' dies='1' cores='3' threads='2'/>
|
<topology sockets="1" dies="1" cores="3" threads="2"/>
|
||||||
<cache mode='passthrough'/>
|
<cache mode="passthrough"/>
|
||||||
<feature policy='require' name='apic'/>
|
|
||||||
<feature policy='require' name='topoext'/>
|
|
||||||
<feature policy='disable' name='svm'/>
|
|
||||||
<feature policy='require' name='hypervisor'/>
|
|
||||||
<feature policy='require' name='invtsc'/>
|
|
||||||
</cpu>
|
</cpu>
|
||||||
<clock offset='localtime'>
|
<clock offset="localtime">
|
||||||
<timer name='rtc' present='no' tickpolicy='catchup'/>
|
<timer name="rtc" present="no" tickpolicy="catchup"/>
|
||||||
<timer name='pit' present='no' tickpolicy='delay'/>
|
<timer name="pit" tickpolicy="delay"/>
|
||||||
<timer name='hpet' present='no'/>
|
<timer name="hpet" present="no"/>
|
||||||
<timer name='hypervclock' present='yes'/>
|
<timer name="hypervclock" present="yes"/>
|
||||||
<timer name='tsc' present='yes' mode='native'/>
|
<timer name="tsc" present="yes" mode="native"/>
|
||||||
</clock>
|
</clock>
|
||||||
<on_poweroff>destroy</on_poweroff>
|
<on_poweroff>destroy</on_poweroff>
|
||||||
<on_reboot>restart</on_reboot>
|
<on_reboot>restart</on_reboot>
|
||||||
<on_crash>destroy</on_crash>
|
<on_crash>destroy</on_crash>
|
||||||
<pm>
|
<pm>
|
||||||
<suspend-to-mem enabled='no'/>
|
<suspend-to-mem enabled="no"/>
|
||||||
<suspend-to-disk enabled='no'/>
|
<suspend-to-disk enabled="no"/>
|
||||||
</pm>
|
</pm>
|
||||||
<devices>
|
<devices>
|
||||||
<emulator>/run/libvirt/nix-emulators/qemu-system-x86_64</emulator>
|
<emulator>/run/libvirt/nix-emulators/qemu-system-x86_64</emulator>
|
||||||
<disk type='block' device='disk'>
|
<disk type="block" device="disk">
|
||||||
<driver name='qemu' type='raw' cache='none' io='native' discard='unmap'/>
|
<driver name="qemu" type="raw" cache="none" io="native" discard="unmap"/>
|
||||||
<source dev='/dev/disk/by-id/ata-Samsung_SSD_870_EVO_500GB_S6PXNM0T402828A'/>
|
<source dev="/dev/disk/by-id/ata-Samsung_SSD_870_EVO_500GB_S6PXNM0T402828A"/>
|
||||||
<target dev='sda' bus='sata'/>
|
<target dev="sda" bus="sata"/>
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='0'/>
|
<address type="drive" controller="0" bus="0" target="0" unit="0"/>
|
||||||
</disk>
|
</disk>
|
||||||
<disk type='block' device='disk'>
|
<disk type="block" device="disk">
|
||||||
<driver name='qemu' type='raw' cache='none' io='native' discard='unmap'/>
|
<driver name="qemu" type="raw" cache="none" io="native" discard="unmap"/>
|
||||||
<source dev='/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y7FCSH2U'/>
|
<source dev="/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y7FCSH2U"/>
|
||||||
<target dev='sdb' bus='sata'/>
|
<target dev="sdb" bus="sata"/>
|
||||||
<address type='drive' controller='0' bus='0' target='0' unit='1'/>
|
<address type="drive" controller="0" bus="0" target="0" unit="1"/>
|
||||||
</disk>
|
</disk>
|
||||||
<controller type='pci' index='0' model='pcie-root'/>
|
<controller type="pci" index="0" model="pcie-root"/>
|
||||||
<controller type='pci' index='1' model='pcie-root-port'>
|
<controller type="pci" index="1" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='1' port='0x8'/>
|
<target chassis="1" port="0x8"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0' multifunction='on'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x0" multifunction="on"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='2' model='pcie-root-port'>
|
<controller type="pci" index="2" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='2' port='0x9'/>
|
<target chassis="2" port="0x9"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x1"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='3' model='pcie-root-port'>
|
<controller type="pci" index="3" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='3' port='0xa'/>
|
<target chassis="3" port="0xa"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x2"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='4' model='pcie-root-port'>
|
<controller type="pci" index="4" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='4' port='0xb'/>
|
<target chassis="4" port="0xb"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x3'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x3"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='5' model='pcie-root-port'>
|
<controller type="pci" index="5" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='5' port='0xc'/>
|
<target chassis="5" port="0xc"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x4'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x4"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='6' model='pcie-root-port'>
|
<controller type="pci" index="6" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='6' port='0xd'/>
|
<target chassis="6" port="0xd"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x5'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x5"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='7' model='pcie-root-port'>
|
<controller type="pci" index="7" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='7' port='0xe'/>
|
<target chassis="7" port="0xe"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x6'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x6"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='8' model='pcie-root-port'>
|
<controller type="pci" index="8" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='8' port='0xf'/>
|
<target chassis="8" port="0xf"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x7'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x01" function="0x7"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='9' model='pcie-root-port'>
|
<controller type="pci" index="9" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='9' port='0x10'/>
|
<target chassis="9" port="0x10"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x0" multifunction="on"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='10' model='pcie-root-port'>
|
<controller type="pci" index="10" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='10' port='0x11'/>
|
<target chassis="10" port="0x11"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x1"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='11' model='pcie-root-port'>
|
<controller type="pci" index="11" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='11' port='0x12'/>
|
<target chassis="11" port="0x12"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x2"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='12' model='pcie-root-port'>
|
<controller type="pci" index="12" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='12' port='0x13'/>
|
<target chassis="12" port="0x13"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x3'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x3"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='13' model='pcie-root-port'>
|
<controller type="pci" index="13" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='13' port='0x14'/>
|
<target chassis="13" port="0x14"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x4'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x4"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='pci' index='14' model='pcie-root-port'>
|
<controller type="pci" index="14" model="pcie-root-port">
|
||||||
<model name='pcie-root-port'/>
|
<model name="pcie-root-port"/>
|
||||||
<target chassis='14' port='0x15'/>
|
<target chassis="14" port="0x15"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x5'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x02" function="0x5"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='sata' index='0'>
|
<controller type="sata" index="0">
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x1f" function="0x2"/>
|
||||||
</controller>
|
</controller>
|
||||||
<controller type='usb' index='0' model='qemu-xhci'>
|
<controller type="usb" index="0" model="qemu-xhci">
|
||||||
<address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
|
<address type="pci" domain="0x0000" bus="0x02" slot="0x00" function="0x0"/>
|
||||||
</controller>
|
</controller>
|
||||||
<interface type='bridge'>
|
<interface type="bridge">
|
||||||
<mac address='52:54:00:05:03:2d'/>
|
<mac address="52:54:00:05:03:2d"/>
|
||||||
<source bridge='virbr0'/>
|
<source bridge="bridge0"/>
|
||||||
<model type='virtio'/>
|
<model type="virtio"/>
|
||||||
<link state='up'/>
|
<link state="up"/>
|
||||||
<address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
|
<address type="pci" domain="0x0000" bus="0x01" slot="0x00" function="0x0"/>
|
||||||
</interface>
|
</interface>
|
||||||
<input type='keyboard' bus='virtio'>
|
<input type="evdev">
|
||||||
<address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
|
<source dev="/dev/input/by-id/usb-Logitech_G502_HERO_Gaming_Mouse_1974396F3638-event-mouse"/>
|
||||||
</input>
|
</input>
|
||||||
<input type='mouse' bus='virtio'>
|
<input type="evdev">
|
||||||
<address type='pci' domain='0x0000' bus='0x06' slot='0x00' function='0x0'/>
|
<source dev="/dev/input/by-id/usb-Logitech_Gaming_Keyboard_G610_067A397A3637-event-kbd" grab="all" repeat="on"/>
|
||||||
</input>
|
</input>
|
||||||
<input type='evdev'>
|
<input type="evdev">
|
||||||
<source dev='/dev/input/by-id/usb-Logitech_G502_HERO_Gaming_Mouse_1974396F3638-event-mouse'/>
|
<source dev="/dev/input/by-id/usb-Logitech_G502_HERO_Gaming_Mouse_1974396F3638-if01-event-kbd"/>
|
||||||
</input>
|
</input>
|
||||||
<input type='evdev'>
|
<input type="mouse" bus="ps2"/>
|
||||||
<source dev='/dev/input/by-id/usb-Logitech_Gaming_Keyboard_G610_067A397A3637-event-kbd' grab='all' repeat='on'/>
|
<input type="keyboard" bus="ps2"/>
|
||||||
</input>
|
<sound model="ich9">
|
||||||
<input type='evdev'>
|
<audio id="1"/>
|
||||||
<source dev='/dev/input/by-id/usb-Logitech_G502_HERO_Gaming_Mouse_1974396F3638-if01-event-kbd'/>
|
<address type="pci" domain="0x0000" bus="0x00" slot="0x1b" function="0x0"/>
|
||||||
</input>
|
|
||||||
<input type='mouse' bus='ps2'/>
|
|
||||||
<input type='keyboard' bus='ps2'/>
|
|
||||||
<sound model='ich9'>
|
|
||||||
<codec type='micro'/>
|
|
||||||
<audio id='1'/>
|
|
||||||
<address type='pci' domain='0x0000' bus='0x00' slot='0x1b' function='0x0'/>
|
|
||||||
</sound>
|
</sound>
|
||||||
<audio id='1' type='pulseaudio' serverName='/run/user/1000/pulse/native'>
|
<audio id="1" type="jack">
|
||||||
<input mixingEngine='no'/>
|
<input clientName="win10" connectPorts="Starship/Matisse HD Audio Controller Analog Stereo:capture_F[LR]"/>
|
||||||
<output mixingEngine='no'/>
|
<output clientName="win10" connectPorts="Starship/Matisse HD Audio Controller Analog Stereo:playback_F[LR]"/>
|
||||||
</audio>
|
</audio>
|
||||||
<hostdev mode='subsystem' type='pci' managed='yes'>
|
<hostdev mode="subsystem" type="pci" managed="yes">
|
||||||
<source>
|
<source>
|
||||||
<address domain='0x0000' bus='0x10' slot='0x00' function='0x0'/>
|
<address domain="0x0000" bus="0x10" slot="0x00" function="0x0"/>
|
||||||
</source>
|
</source>
|
||||||
<address type='pci' domain='0x0000' bus='0x04' slot='0x00' function='0x0'/>
|
<address type="pci" domain="0x0000" bus="0x04" slot="0x00" function="0x0"/>
|
||||||
</hostdev>
|
</hostdev>
|
||||||
<hostdev mode='subsystem' type='pci' managed='yes'>
|
<hostdev mode="subsystem" type="pci" managed="yes">
|
||||||
<source>
|
<source>
|
||||||
<address domain='0x0000' bus='0x10' slot='0x00' function='0x1'/>
|
<address domain="0x0000" bus="0x10" slot="0x00" function="0x1"/>
|
||||||
</source>
|
</source>
|
||||||
<address type='pci' domain='0x0000' bus='0x05' slot='0x00' function='0x0'/>
|
<address type="pci" domain="0x0000" bus="0x05" slot="0x00" function="0x0"/>
|
||||||
</hostdev>
|
</hostdev>
|
||||||
<memballoon model='none'/>
|
<memballoon model="none"/>
|
||||||
</devices>
|
</devices>
|
||||||
|
<qemu:commandline>
|
||||||
|
<qemu:env name="PIPEWIRE_RUNTIME_DIR" value="/run/user/1000"/>
|
||||||
|
<qemu:env name="PIPEWIRE_LATENCY" value="512/48000"/>
|
||||||
|
<qemu:env name="LD_LIBRARY_PATH" value="$LD_LIBRARY_PATH:/run/current-system/sw/lib/pipewire"/>
|
||||||
|
</qemu:commandline>
|
||||||
</domain>
|
</domain>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue