nixos-config/nixos/gaming.nix

15 lines
234 B
Nix

{ config, pkgs, lib, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
};
environment.systemPackages = with pkgs; [
pkgs.discord
];
}