Merge #70499: nixos/steam-hardware: add uinput to boot.kernelModules

This commit is contained in:
Vladimír Čunát
2019-10-13 10:21:49 +02:00

View File

@@ -21,5 +21,12 @@ in
services.udev.packages = [
pkgs.steamPackages.steam
];
# The uinput module needs to be loaded in order to trigger the udev rules
# defined in the steam package for setting permissions on /dev/uinput.
#
# If the udev rules are not triggered, some controllers won't work with
# steam.
boot.kernelModules = [ "uinput" ];
};
}