14 lines
406 B
Nix
14 lines
406 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; };
|
|
};
|
|
}
|