21 lines
434 B
Nix
21 lines
434 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Steam
|
|
programs.steam = {
|
|
enable = true;
|
|
gamescopeSession.enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
#mangohud
|
|
protonup
|
|
];
|
|
|
|
environment.sessionVariables = {
|
|
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "/home/chris/.steam/root/compatibilitytools.d";
|
|
};
|
|
|
|
programs.gamemode.enable = true;
|
|
}
|