dot_testing/modules/gaming.nix

15 lines
395 B
Nix
Raw Permalink Normal View History

2023-08-13 08:49:35 -05:00
{ config, lib, pkgs, ... }:
{
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
};
environment.systemPackages = with pkgs; [
(prismlauncher.override { jdks = [ zulu8 zulu17 ]; })
2023-12-28 15:27:31 -06:00
xonotic
minetest
2023-08-13 08:49:35 -05:00
];
}