converted more modules

This commit is contained in:
John Lancaster
2026-03-08 11:25:07 -05:00
parent 7d4f997c18
commit 0c1e633aaa
4 changed files with 44 additions and 0 deletions

12
modules/nixos/games.nix Normal file
View File

@@ -0,0 +1,12 @@
{ ... }:
{
flake.modules.nixos.games = {
programs.steam = {
enable = true;
gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
};
}