mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
14 lines
310 B
Nix
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;
|
|
};
|
|
};
|
|
}
|