Files
nix-config/hosts/modules/steam.nix
2024-12-21 12:33:58 +01:00

13 lines
302 B
Nix

{ inputs, pkgs, ... }: {
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
gamescopeSession.enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
};
}