nixos-config/configurations/host/materusPC/vm/win10/default.nix

131 lines
3.3 KiB
Nix
Raw Normal View History

2024-02-23 01:19:54 +01:00
{ config, pkgs, ... }:
2023-10-08 11:42:08 +02:00
let
startHook = /*''
# Debugging
exec 19>/home/materus/startlogfile
BASH_XTRACEFD=19
set -x
exec 3>&1 4>&2
trap 'exec 2>&4 1>&3' 0 1 2 3
exec 1>/home/materus/startlogfile.out 2>&1
''
+*/
''
2024-03-11 16:19:31 +01:00
# Make sure nothing renders on gpu to prevent "sysfs: cannot create duplicate filename" after rebinding to amdgpu
chmod 0 /dev/dri/renderD128
fuser -k /dev/dri/renderD128
2023-10-08 11:42:08 +02:00
2024-03-11 16:19:31 +01:00
# Seems to fix reset bug for 7900 XTX
echo "0" > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/d3cold_allowed"
2023-10-08 11:42:08 +02:00
2024-04-22 11:33:57 +02:00
systemctl stop windows-share-mount.service
2023-10-08 11:42:08 +02:00
2024-03-11 16:19:31 +01:00
echo ''$VIRSH_GPU_VIDEO > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/driver/unbind"
echo ''$VIRSH_GPU_AUDIO > "/sys/bus/pci/devices/''${VIRSH_GPU_AUDIO}/driver/unbind"
2023-10-08 11:42:08 +02:00
2024-03-11 16:19:31 +01:00
sleep 1s
2023-10-08 11:42:08 +02:00
2024-04-22 11:33:57 +02:00
echo "15" > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/resource0_resize"
2024-03-11 16:19:31 +01:00
echo "8" > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/resource2_resize"
2023-10-08 11:42:08 +02:00
2024-03-11 16:19:31 +01:00
echo "3" > /proc/sys/vm/drop_caches
echo "1" > /proc/sys/vm/compact_memory
2023-10-08 11:42:08 +02:00
2023-12-22 11:53:49 +01:00
2024-03-11 16:19:31 +01:00
systemctl set-property --runtime -- user.slice AllowedCPUs=0-7,16-23
systemctl set-property --runtime -- system.slice AllowedCPUs=0-7,16-23
systemctl set-property --runtime -- init.scope AllowedCPUs=0-7,16-23
2023-10-08 11:42:08 +02:00
2024-03-11 16:19:31 +01:00
'';
2023-10-08 11:42:08 +02:00
stopHook = ''
# Debugging
# exec 19>/home/materus/stoplogfile
# BASH_XTRACEFD=19
# set -x
# exec 3>&1 4>&2
# trap 'exec 2>&4 1>&3' 0 1 2 3
# exec 1>/home/materus/stoplogfile.out 2>&1
sleep 1s
echo ''$VIRSH_GPU_VIDEO > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/driver/unbind"
echo ''$VIRSH_GPU_AUDIO > "/sys/bus/pci/devices/''${VIRSH_GPU_AUDIO}/driver/unbind"
echo "15" > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/resource0_resize"
echo "8" > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/resource2_resize"
echo "1" > "/sys/bus/pci/devices/''${VIRSH_GPU_VIDEO}/d3cold_allowed"
echo ''$VIRSH_GPU_VIDEO > /sys/bus/pci/drivers/amdgpu/bind
echo ''$VIRSH_GPU_AUDIO > /sys/bus/pci/drivers/snd_hda_intel/bind
2023-12-22 11:53:49 +01:00
2023-10-08 11:42:08 +02:00
2024-04-22 11:33:57 +02:00
systemctl start windows-share-mount.service
2023-10-08 11:42:08 +02:00
systemctl set-property --runtime -- user.slice AllowedCPUs=0-31
systemctl set-property --runtime -- system.slice AllowedCPUs=0-31
systemctl set-property --runtime -- init.scope AllowedCPUs=0-31
'';
in
{
virtualisation.libvirtd.hooks.qemu = {
"win10" = pkgs.writeShellScript "win10.sh" ''
VIRSH_GPU_VIDEO="0000:03:00.0"
VIRSH_GPU_AUDIO="0000:03:00.1"
VIRSH_USB1="0000:10:00.0"
if [ ''$1 = "win10" ] || [ ''$1 = "win11" ]; then
if [ ''$2 = "prepare" ] && [ ''$3 = "begin" ]; then
${startHook}
fi
if [ ''$2 = "release" ] && [ ''$3 = "end" ]; then
${stopHook}
fi
fi
'';
};
2024-04-22 11:33:57 +02:00
systemd.services.windows-share-mount = {
2023-10-08 11:42:08 +02:00
wantedBy = [ "multi-user.target" ];
path = [ config.virtualisation.libvirtd.qemu.package pkgs.util-linux pkgs.kmod pkgs.coreutils ];
serviceConfig.Type = "oneshot";
serviceConfig.RemainAfterExit = true;
script = ''
2024-04-22 11:33:57 +02:00
losetup -P /dev/loop6 /materus/data/VM/data.raw
mount /dev/loop6p1 /materus/data/Windows -o uid=1000,gid=100
2023-10-08 11:42:08 +02:00
'';
preStop = ''
2024-04-22 11:33:57 +02:00
umount -lf /materus/data/Windows
losetup -d /dev/loop6
2023-10-08 11:42:08 +02:00
'';
};
}