23 lines
518 B
Nix
Raw Normal View History

2024-02-08 23:21:10 +03:00
{ pkgs, ... }: {
2023-08-11 11:01:40 +03:00
programs.steam.enable = true;
programs.steam.extraCompatPackages = [
2024-03-23 18:01:09 +03:00
pkgs.proton-ge-bin
2023-08-11 11:01:40 +03:00
];
2023-10-13 19:51:59 +03:00
programs.gamescope.enable = true;
programs.gamescope.capSysNice = false;
2023-08-11 11:01:40 +03:00
2024-02-08 23:21:10 +03:00
startupApplications = [ "${pkgs.steam}/bin/steam" ];
2023-08-11 11:01:40 +03:00
persist.state.homeDirectories = [
".local/share/Steam"
".steam"
] ++ [
2024-02-08 23:21:10 +03:00
# Native games config
2023-08-11 11:01:40 +03:00
".config/WarThunder"
2023-10-01 23:45:11 +03:00
".local/share/BeamNG.drive"
2024-03-04 00:01:23 +03:00
".local/share/Transistor"
2024-03-23 18:01:09 +03:00
".local/share/Paradox\ Interactive"
".paradoxlauncher"
2023-08-11 11:01:40 +03:00
];
}