{ 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; theme = "dark"; style = "native"; addons = with pkgs.ankiAddons; [ anki-quizlet-importer-extended ]; }; }; }