Files
nixos/modules/home-manager/anki.nix
T
2026-03-02 15:20:03 +01:00

14 lines
310 B
Nix

{ config, pkgs, ... }:
{
programs.anki = {
# we enable system wide with nixpkgs because it offers some addon configuration. We just use this for some config
#enable = true;
theme = "dark";
sync = {
autoSync = true;
autoSyncMediaMinutes = 10;
syncMedia = true;
};
};
}