Files
garandos/modules/home/anki.nix
2025-10-24 00:26:52 +02:00

11 lines
174 B
Nix

{ pkgs, username, ... }:
{
programs.anki = {
enable = true;
package = pkgs.anki;
language = "pl_PL";
style = "native";
sync.username = username;
};
}