feat(services): enable wakapi

This commit is contained in:
Mohammad Rafiq 2025-04-10 16:48:05 +08:00
parent 2a80ef07bf
commit 1d32673ecf
No known key found for this signature in database
4 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{ config, ... }:
{
services.wakapi = {
enable = true;
passwordSaltFile = config.sops.secrets."services/wakapi_password_salt".path;
settings = {
server = {
listen_ipv4 = "0.0.0.0";
listen_ipv6 = "-";
port = 3000;
};
};
};
}