trying more modules

This commit is contained in:
Julian Sutter 2023-08-11 08:41:54 -07:00
parent 71f454ee0b
commit 6943ad6d42
8 changed files with 30 additions and 16 deletions

17
modules/gaming.nix Executable file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
parsec
bottles
];
# Steam
programs.steam = with pkgs; {
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
};
}