diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-05-20 09:17:57 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-05-20 09:17:57 -0400 |
| commit | a2b7b6ab219ea30ce3a5fcdf3672780cc5b35860 (patch) | |
| tree | b044e86ca40acc21d0fccdb5457ad13088578951 | |
| parent | update commits (diff) | |
| download | dotfiles-nix-a2b7b6ab219ea30ce3a5fcdf3672780cc5b35860.tar.gz dotfiles-nix-a2b7b6ab219ea30ce3a5fcdf3672780cc5b35860.tar.bz2 dotfiles-nix-a2b7b6ab219ea30ce3a5fcdf3672780cc5b35860.zip | |
fix steam controller
| -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 |