11 lines
189 B
Nix
11 lines
189 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.steam = {
|
|
enable = true;
|
|
remotePlay.openFirewall = true;
|
|
dedicatedServer.openFirewall = true;
|
|
};
|
|
|
|
services.joycond.enable = true;
|
|
} |