nixos/systems/game-laptop/gaming.nix
2023-02-22 19:41:05 -05:00

12 lines
345 B
Nix

_: {pkgs, ...}: {
environment.systemPackages = with pkgs; [
heroic
legendary-gl
prismlauncher
];
programs.steam = {
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
};
}