From 915cf779e040a676646ac37abca35a6e2e208ad4 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Fri, 22 Oct 2021 21:44:14 +0200 Subject: [PATCH] virtualisation: Remove evdev-proxy as it is currently broken --- modules/virtualisation/gaming.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/modules/virtualisation/gaming.nix b/modules/virtualisation/gaming.nix index 7895a45..02e3bc9 100644 --- a/modules/virtualisation/gaming.nix +++ b/modules/virtualisation/gaming.nix @@ -94,18 +94,18 @@ ln -Tfs /etc/libvirt/hooks /var/lib/libvirt/hooks ''; - services.udev.packages = with pkgs; [ evdev-proxy ]; + #services.udev.packages = with pkgs; [ evdev-proxy ]; systemd = { services.libvirtd.path = with pkgs; [ vfio-isolate systemd bash ]; - user.services.evdev-proxy = { - description = "Creates virtual device to proxy evdev devices events"; - #wantedBy = [ "default.target" ]; - serviceConfig = { - Type = "simple"; - ExecStart = "${pkgs.evdev-proxy}/bin/evdev-proxy"; - Restart = "always"; - }; - }; + #user.services.evdev-proxy = { + # description = "Creates virtual device to proxy evdev devices events"; + # #wantedBy = [ "default.target" ]; + # serviceConfig = { + # Type = "simple"; + # ExecStart = "${pkgs.evdev-proxy}/bin/evdev-proxy"; + # Restart = "always"; + # }; + #}; }; }