From 6e02ce3b15d4436dc7cbf2ed8cebb7aa081bde7b Mon Sep 17 00:00:00 2001 From: derfenix Date: Tue, 2 Sep 2025 22:59:31 +0300 Subject: [PATCH] Add steam-devices-udev-rules for steam quirk --- quirks/steam.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/quirks/steam.nix b/quirks/steam.nix index cec7f49..7fe186c 100644 --- a/quirks/steam.nix +++ b/quirks/steam.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { imports = [ ./32bit.nix @@ -7,4 +7,7 @@ hardware = { steam-hardware.enable = true; }; + environment.systemPackages = [ + pkgs.steam-devices-udev-rules + ]; }