Files
nixos/configuration/modules/gaming.nix
2025-05-22 22:19:43 +01:00

20 lines
640 B
Nix

{ pkgs, ... }:
{
hardware.graphics.enable32Bit = true; # For 32 bit applications
hardware.steam-hardware.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
gamescopeSession.enable = true;
protontricks.enable = true;
extraCompatPackages = [ pkgs.proton-ge-bin ];
};
programs.gamemode.enable = true;
programs.gamescope.enable = true;
programs.cdemu.enable = true; # Remember to add users to the cdrom group for this to work
}