1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ 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; }; }; }