worked on ly config and added Anki

This commit is contained in:
Tomas Rivera
2026-03-02 14:23:38 +01:00
parent f39dc99356
commit 5588cb0b73
3 changed files with 18 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
programs.anki = {
enable = true;
sync = {
autoSync = true;
autoSyncMediaMinutes = 10;
syncMedia = true;
};
addons = [
pkgs.ankiAddons.recolor
];
};
}