nixcfg/nixosModules/apps/steam/default.nix

22 lines
502 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.alyraffauf.apps.steam.enable {
hardware.steam-hardware.enable = true;
2024-06-15 20:21:34 -04:00
programs = {
gamescope.enable = true;
steam = {
enable = true;
gamescopeSession.enable = true;
remotePlay.openFirewall =
true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall =
true; # Open ports in the firewall for Source Dedicated Server
};
};
};
}