NixOS-Configs/hosts/workstation/games/default.nix
2024-06-30 09:47:45 -05:00

23 lines
428 B
Nix

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
programs = {
# GAMES!
steam = {
enable = true;
gamescopeSession.enable = true;
# # Open ports in the firewall for Steam Remote Play
# remotePlay.openFirewall = true;
# # Open ports in the firewall for Source Dedicated Server
# dedicatedServer.openFirewall = true;
};
gamemode = {
enable = true;
};
};
}