diff --git a/modules/home/anki.nix b/modules/home/anki.nix index b004881..ad81303 100644 --- a/modules/home/anki.nix +++ b/modules/home/anki.nix @@ -1,7 +1,10 @@ -{ pkgs, ... }: +{ pkgs, username, ... }: { programs.anki = { enable = true; package = pkgs.anki; + language = "pl_PL"; + style = "native"; + sync.username = username; }; }