diff options
| -rw-r--r-- | system/gaming/steam.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system/gaming/steam.nix b/system/gaming/steam.nix index 358a94a..58fe924 100644 --- a/system/gaming/steam.nix +++ b/system/gaming/steam.nix @@ -1,6 +1,7 @@ { lib, config, + pkgs, ... }: let inherit (lib) mkIf; @@ -25,6 +26,10 @@ in { dedicatedServer.openFirewall = true; localNetworkGameTransfers.openFirewall = true; gamescopeSession.enable = true; + + # Fix new steam controller + extest.enable = true; + extraPackages = [ pkgs.hidapi ]; }; # controllers |