add anki server to zenix

This commit is contained in:
tristan 2024-02-03 18:11:37 +00:00
parent 1cd82715d1
commit fdb5c0bad3
2 changed files with 13 additions and 0 deletions

12
nixos/programs/anki.nix Normal file
View file

@ -0,0 +1,12 @@
{
...
}: {
services.anki-sync-server = {
enable = true;
address = "100.65.29.110";
users = [{
username = "tristan";
password = "password";
} ];
};
}