{ options, config, lib, pkgs, ... }: with lib; let cfg = config.aa.apps.steam; in { options.aa.apps.steam = with types; { enable = mkEnableOption "steam"; }; config = mkIf cfg.enable { programs.steam = { enable = true; remotePlay.openFirewall = true; dedicatedServer.openFirewall = true; }; hardware.opengl = { enable = true; driSupport = true; driSupport32Bit = true; }; }; }