traverseda-nixos-config/nixos/gaming.nix

14 lines
217 B
Nix
Raw Normal View History

2024-05-11 14:11:07 -03:00
{ config, pkgs, lib, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
};
environment.systemPackages = with pkgs; [
];
}