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

16 lines
284 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 = {
2025-04-16 21:54:10 +02:00
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
2025-04-10 11:33:28 +02:00
};
2025-03-27 14:59:12 +01:00
}