{ options, config, lib, pkgs, ... }: with lib; with lib.plusultra; let cfg = config.plusultra.apps.yuzu; in { options.plusultra.apps.yuzu = with types; { enable = mkBoolOpt false "Whether or not to enable Yuzu."; }; config = mkIf cfg.enable { environment.systemPackages = with pkgs; [ yuzu-mainline ]; }; }