summaryrefslogtreecommitdiff
path: root/home-manager/features
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2026-01-28 15:11:12 -0500
committertriethyl <triethylammonium@pm.me>2026-01-28 15:11:12 -0500
commit361518753140ab26dbe840582f7b70921188754e (patch)
treee13e6ae68e4c8a5b5965a3d1a2cc4c2fc055d001 /home-manager/features
parent59d885199e5840c1d266a6bfd2b9ae5fcf09957c (diff)
home-manager: added anki flashcards app
Diffstat (limited to 'home-manager/features')
-rw-r--r--home-manager/features/gui/apps/anki.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/home-manager/features/gui/apps/anki.nix b/home-manager/features/gui/apps/anki.nix
index 5ae9728..be336be 100644
--- a/home-manager/features/gui/apps/anki.nix
+++ b/home-manager/features/gui/apps/anki.nix
@@ -10,6 +10,11 @@ in {
config = lib.mkIf cfg.enable {
programs.anki = {
enable = true;
+ theme = "dark";
+ style = "native";
+ addons = with pkgs.ankiAddons; [
+ anki-quizlet-importer-extended
+ ];
};
};
}