blob: 88a6d7a57d13240b9d81fcf11c8c4277248e097e (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{ config, pkgs, ... }:
{
programs.steam.enable = true;
programs.gamemode = {
enable = true;
settings = {
general = {
renice = 5;
};
custom = {
start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";
};
};
};
fonts.fontconfig.cache32Bit = true;
hardware.steam-hardware.enable = true;
hardware.opengl.driSupport32Bit = true;
hardware.pulseaudio.support32Bit = true;
services.pipewire.alsa.support32Bit = true;
systemd = {
extraConfig = ''
DefaultLimitNOFILE=524288
'';
user.extraConfig = ''
DefaultLimitNOFILE=524288
'';
};
services.ananicy = {
enable = true;
package = pkgs.ananicy-cpp;
};
networking.firewall = {
allowedUDPPorts = [
27031
27036
];
allowedTCPPorts = [
27036
27037
];
};
}
|