ahuston-0 3fc1292603 add steam
Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
2024-04-13 22:21:28 -04:00

17 lines
255 B
Nix

{
config,
lib,
pkgs,
...
}:
{
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
localNetworkGameTransfers.openFirewall = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
extest.enable = true;
};
}