bragi/steam.nix

14 lines
423 B
Nix

{ ... }:
{
# Enable MTU probing, as vendor does
# See: https://github.com/ValveSoftware/SteamOS/issues/1006
# See also: https://www.reddit.com/r/SteamDeck/comments/ymqvbz/ubisoft_connect_connection_lost_stuck/j36kk4w/?context=3
boot.kernel.sysctl."net.ipv4.tcp_mtu_probing" = true;
hardware.opengl = {
driSupport32Bit = true;
};
hardware.pulseaudio.support32Bit = true;
programs.steam.enable = true;
}