yuki: init anki-sync-server
All checks were successful
ci/woodpecker/push/checks Pipeline was successful

This commit is contained in:
notohh 2024-01-27 18:41:31 -05:00
parent 3260e6964e
commit 0fa030588d
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{config, ...}: {
sops.secrets.anki-pwd = {};
services.anki-sync-server = {
enable = true;
openFirewall = true;
address = "100.108.113.89";
port = 27701;
users = [
{
username = "notoh";
passwordFile = config.sops.secrets.anki-pwd.path;
}
];
};
}

View file

@ -8,5 +8,6 @@
./wallos.nix
./homepage.nix
./searxng.nix
./anki-sync-server.nix
];
}