added steam + other gaming support

specifically applied to laptop only currently
This commit is contained in:
Emile Clark-Boman 2025-05-06 16:41:52 +10:00
parent 35b54acb85
commit 09c38f02ea
2 changed files with 23 additions and 5 deletions

View file

@ -11,14 +11,26 @@
"steam-run"
];
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
programs = {
steam = {
enable = true;
gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
gamemode.enable = true;
};
environment.systemPackages = with pkgs; [
steamcmd
mangohud
protonup-qt
lutris
bottles
heroic
];
}