mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
12 lines
342 B
Nix
12 lines
342 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
|
|
};
|
|
}
|