summaryrefslogtreecommitdiff
path: root/home-manager/features/gui/apps/anki.nix
blob: 5ae97286d15a29c382336f665a61b296ebd8ab74 (plain)
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;
    };
  };
}