-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixos/steam-hardware: add uinput to boot.kernelModules #70499
nixos/steam-hardware: add uinput to boot.kernelModules #70499
Conversation
uinput needs to be added to boot.kernelModules in order for the udev rules defined by steam to be run and set permissions correctly on /dev/uinput. See NixOS#70471.
i can't add myself as a reviewer but i'll take a look and test |
@illegalprime Thanks! Note that @nyanloutre reported that they didn't actually need to add |
in the past I've had this issue with a steam controller and I just needed to chmod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works well for me!
# | ||
# If the udev rules are not triggered, some controllers won't work with | ||
# steam. | ||
boot.kernelModules = [ "uinput" ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding this made this steam error go away:
Couldnt initialize virtual gamepad: Couldnt open /dev/uinput for writing
This is now my /dev/uinput
permissions:
$ ls -al /dev/uinput
crw-rw----+ 1 root root 10, 223 Oct 6 12:07 /dev/uinput
The steam controller works without steam and in the steam program itself but not in any games without this extra module. I did a test with & without this module with the game VVVVVV, and it fixed the issue (it also changed /dev/uinput
's permissions, so it looks like it's doing the right thing).
working for me |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems safe enough, and multiple people confirmed it solves the problem. (I don't have the HW.)
(cherry picked from commit 7818f30) Adding this kernel module seems unlikely to break stuff, and the change will only affect those specifying hardware.steam-hardware anyway.
This pull request has been mentioned on NixOS Discourse. There might be relevant details there: https://discourse.nixos.org/t/sunshine-self-hosted-game-stream/25608/7 |
The
uinput
kernel module needs to be added to loaded in order for the udev rules defined by steam to be run and set permissions correctly on/dev/uinput
.Closes #70471.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @nyanloutre @vcunat @lhindir