mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-22 18:52:43 +00:00
21 lines
419 B
Nix
21 lines
419 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.sessionVariables.ANKI_WAYLAND = 1;
|
|
programs.anki = {
|
|
enable = true;
|
|
addons = with pkgs.ankiAddons; [
|
|
anki-connect
|
|
review-heatmap
|
|
# recolor # Use stylix
|
|
];
|
|
sync = {
|
|
autoSync = true;
|
|
autoSyncMediaMinutes = 15;
|
|
username = "ankiweb.unusable450@passmail.net";
|
|
keyFile = config.sops.secrets."ANKI_SYNC_KEY".path;
|
|
};
|
|
};
|
|
}
|