18 lines
412 B
Nix
18 lines
412 B
Nix
{ secrets, ... }: {
|
|
# TODO: Autogenerate port infrastructure
|
|
|
|
imports = [
|
|
./prometheus-exporters/matrix-synapse.nix
|
|
./prometheus-exporters/node.nix
|
|
./prometheus-exporters/postgres.nix
|
|
./prometheus-exporters/redis.nix
|
|
./prometheus-exporters/systemd.nix
|
|
./prometheus-exporters/minecraft.nix
|
|
];
|
|
|
|
services.prometheus = {
|
|
enable = true;
|
|
port = secrets.ports.prometheus;
|
|
};
|
|
}
|