17 lines
324 B
Nix
17 lines
324 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
gamescopeSession.enable = true;
|
|
extraCompatPackages = with pkgs; [
|
|
proton-ge-bin
|
|
];
|
|
localNetworkGameTransfers.openFirewall = true;
|
|
};
|
|
programs.gamemode.enable = true;
|
|
programs.gamescope = {
|
|
enable = true;
|
|
capSysNice = true;
|
|
};
|
|
} |