main
nix 9 lines 190 Bytes
Raw
1 {
2 services.prometheus.scrapeConfigs = [
3 {
4 job_name = "matrix_synapse";
5 scheme = "https";
6 static_configs = [ { targets = [ "matrix.nixos.org:443" ]; } ];
7 }
8 ];
9 }