Files
nixos/modules/gaming/steam.nix
2026-02-04 22:53:00 +01:00

24 lines
383 B
Nix

# modules/gaming/steam.nix
# Steam and Proton configuration
{
config,
pkgs,
lib,
...
}:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
};
hardware.steam-hardware.enable = true;
}