fixed synapse who was not binding to ipv4

This commit is contained in:
chloe 2024-07-19 20:13:30 +02:00
parent 1b7fecf202
commit bbe94ad466
4 changed files with 22 additions and 12 deletions

13
features/prometheus.nix Normal file
View file

@ -0,0 +1,13 @@
{ config, ... }:
{
services.prometheus = {
enable = true;
port = 9001;
};
exporters = {
node = {
enable = true;
};
};
}