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

19 lines
270 B
Nix
Raw Normal View History

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