{ config, pkgs, lib, ... }: let cfg = config.features.gui.apps.anki; in { options.features.gui.apps.anki.enable = lib.mkEnableOption "anki"; config = lib.mkIf cfg.enable { programs.anki = { enable = true; }; }; }