{ config, lib, ... }: with lib; let cfg = config.nixfiles.modules.games.mangohud; in { options.nixfiles.modules.games.mangohud.enable = mkEnableOption "MangoHud"; config = mkIf cfg.enable { hm = { stylix.targets.mangohud.enable = false; programs.mangohud = { enable = true; settings = { fps = true; frame_timing = true; gpu_stats = true; gpu_temp = true; cpu_stats = true; cpu_temp = true; ram = true; vram = true; }; }; }; }; }