aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2026-05-18 15:55:53 -0700
committerMark Nipper <nipsy@bitgnome.net>2026-05-18 15:55:53 -0700
commitd8e2ebb2864f7b738b7701f4505472cf073cbbf7 (patch)
treefeb54f37e01d1bab941f4c879e75df2950265460 /hosts/common
parent20fc1541e39703484e61786aa2a91414fb1a855a (diff)
downloadnix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.tar
nix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.tar.gz
nix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.tar.bz2
nix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.tar.lz
nix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.tar.xz
nix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.tar.zst
nix-d8e2ebb2864f7b738b7701f4505472cf073cbbf7.zip
Add hidapi to allow firmware updates to work for Steam Controller
Diffstat (limited to 'hosts/common')
-rw-r--r--hosts/common/optional/games.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/common/optional/games.nix b/hosts/common/optional/games.nix
index 8158c34..ac6e030 100644
--- a/hosts/common/optional/games.nix
+++ b/hosts/common/optional/games.nix
@@ -9,9 +9,12 @@
pkgs.protontricks
];
+ hardware.steam-hardware.enable = true;
+
programs.steam = {
enable = true;
extraCompatPackages = [ pkgs.proton-ge-bin ];
+ extraPackages = [ pkgs.hidapi ];
#package = pkgs.master.steam;
};
}