blob: e7a115daf9287900871674202ff8e095c3987449 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ config, pkgs, ... }:
{
programs.steam.enable = true;
hardware.steam-hardware.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
systemd = {
extraConfig = ''
DefaultLimitNOFILE=524288
'';
user.extraConfig = ''
DefaultLimitNOFILE=524288
'';
};
networking.firewall = {
allowedUDPPorts = [
27031
27036
];
allowedTCPPorts = [
27036
27037
];
};
}
|