{ lib, config, pkgs, ... }: let inherit (lib) mkIf mkOption types; in { options.smayzy.steam.enable = mkOption { type = types.bool; default = false; description = "steam support"; }; config = mkIf config.smayzy.steam { programs.steam.enable = true; }; }