nix-conf/modules/steam/default.nix
2023-09-27 19:42:04 +02:00

16 lines
277 B
Nix

{ pkgs, ... }:
{
hardware.steam-hardware.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
chaotic.steam.extraCompatPackages = with pkgs; [
luxtorpeda
proton-ge-custom
];
}