nix/os-mods/desktop/gaming.nix

16 lines
235 B
Nix
Raw Normal View History

2023-12-10 05:19:43 +01:00
{ config
, lib
, pkgs
, ...
}: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
dedicatedServer.openFirewall = true;
};
chaotic.steam.extraCompatPackages = with pkgs; [
proton-ge-custom
];
}