2024-02-08 23:21:10 +03:00
|
|
|
{ pkgs, ... }: {
|
2023-08-11 11:01:40 +03:00
|
|
|
programs.steam.enable = true;
|
|
|
|
programs.steam.extraCompatPackages = [
|
|
|
|
pkgs.proton-ge
|
|
|
|
];
|
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"
|
2023-08-11 11:01:40 +03:00
|
|
|
];
|
|
|
|
}
|