From b91eb30fa9f2bf6583a676746f7a31806cf16f0b Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Fri, 24 Oct 2025 00:26:52 +0200 Subject: [PATCH] update anki module --- modules/home/anki.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; }; }