nixos/system/steam.nix
2024-06-08 15:20:05 +02:00

12 lines
169 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf config.gaming.enable {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
};
};
}