vixen: Steam

This commit is contained in:
Sridhar Ratnakumar 2024-10-23 16:35:33 -04:00
parent 89b76cb924
commit df1856ea79
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View file

@ -1,8 +1,11 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
steam
];
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
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
# https://github.com/NixOS/nixpkgs/issues/47932#issuecomment-447508411
hardware.opengl.driSupport32Bit = true;
# hardware.opengl.driSupport32Bit = true;
}