16 lines
235 B
Nix
16 lines
235 B
Nix
|
{ config
|
||
|
, lib
|
||
|
, pkgs
|
||
|
, ...
|
||
|
}: {
|
||
|
programs.steam = {
|
||
|
enable = true;
|
||
|
remotePlay.openFirewall = true;
|
||
|
dedicatedServer.openFirewall = true;
|
||
|
};
|
||
|
|
||
|
chaotic.steam.extraCompatPackages = with pkgs; [
|
||
|
proton-ge-custom
|
||
|
];
|
||
|
}
|