enable nats.io for dendrite

This commit is contained in:
Adithya 2023-08-19 23:08:35 +05:30
parent fca31a2caa
commit 9c217529ae
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,9 @@
{...}: {
imports = [./caddy.nix ./frpc.nix ./postgresql.nix ./ssh.nix];
imports = [
./caddy.nix
./frpc.nix
./nats.nix
./postgresql.nix
./ssh.nix
];
}

View file

@ -0,0 +1,6 @@
_: {
services.nats = {
enable = true;
jetstream = true;
};
}