nix-config/home/programs/games/steam.nix

16 lines
256 B
Nix
Raw Normal View History

2025-03-27 14:59:12 +01:00
{
pkgs,
config,
...
}: {
2025-04-10 11:33:28 +02:00
/*home.packages = with pkgs; [
2025-03-27 14:59:12 +01:00
steam
2025-04-10 11:33:28 +02:00
];*/
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
2025-03-27 14:59:12 +01:00
}