nix-config/modules/default/common/desktop/games/steam.nix
2025-01-07 23:28:53 +01:00

16 lines
338 B
Nix

{ lib, config, ... }:
lib.mkIf config.desktop.enable {
programs.steam = {
enable = true;
gamescopeSession = {
enable = true;
};
};
hardware.steam-hardware.enable = true;
services.udev.extraRules = ''
SUBSYSTEM=="tty", ATTRS{idVendor}=="28de", ATTRS{idProduct}=="2102", MODE="0660", TAG+="uaccess"
'';
}