[tohru] Modularise steam config

This commit is contained in:
Katherina Walshe-Grey 2024-06-05 23:22:51 +01:00
parent 433930bde6
commit 1ca847cd91
2 changed files with 10 additions and 7 deletions

9
services/steam.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
}