virtualisation: Remove evdev-proxy as it is currently broken

This commit is contained in:
PapaTutuWawa 2021-10-22 21:44:14 +02:00
parent 299763ceaf
commit 915cf779e0

View File

@ -94,18 +94,18 @@
ln -Tfs /etc/libvirt/hooks /var/lib/libvirt/hooks ln -Tfs /etc/libvirt/hooks /var/lib/libvirt/hooks
''; '';
services.udev.packages = with pkgs; [ evdev-proxy ]; #services.udev.packages = with pkgs; [ evdev-proxy ];
systemd = { systemd = {
services.libvirtd.path = with pkgs; [ vfio-isolate systemd bash ]; services.libvirtd.path = with pkgs; [ vfio-isolate systemd bash ];
user.services.evdev-proxy = { #user.services.evdev-proxy = {
description = "Creates virtual device to proxy evdev devices events"; # description = "Creates virtual device to proxy evdev devices events";
#wantedBy = [ "default.target" ]; # #wantedBy = [ "default.target" ];
serviceConfig = { # serviceConfig = {
Type = "simple"; # Type = "simple";
ExecStart = "${pkgs.evdev-proxy}/bin/evdev-proxy"; # ExecStart = "${pkgs.evdev-proxy}/bin/evdev-proxy";
Restart = "always"; # Restart = "always";
}; # };
}; #};
}; };
} }