nix-conf/modules/steam/default.nix

17 lines
277 B
Nix
Raw Normal View History

2023-09-27 19:42:04 +02:00
{ pkgs, ... }:
2023-05-19 20:53:02 +02:00
{
hardware.steam-hardware.enable = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
2023-09-27 19:42:04 +02:00
chaotic.steam.extraCompatPackages = with pkgs; [
luxtorpeda
proton-ge-custom
];
2023-05-19 20:53:02 +02:00
}