snowflake/hosts/yuki/services/anki-sync-server.nix
notohh 0fa030588d
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
yuki: init anki-sync-server
2024-01-27 18:41:31 -05:00

15 lines
303 B
Nix

{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;
}
];
};
}