mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-03 19:48:24 +08:00
11 lines
486 B
Nix
11 lines
486 B
Nix
{ pkgs, ... }: {
|
|
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;
|
|
}
|