feat(services): enable wakapi
This commit is contained in:
parent
2a80ef07bf
commit
1d32673ecf
4 changed files with 20 additions and 2 deletions
14
configs/services/wakapi.nix
Normal file
14
configs/services/wakapi.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue