nixos-config/modules/nixos/services/default.nix
Charlotte Van Petegem 8e821442af
Remove telegraf from all hosts
I basically ignore the data anyway. I'll redo monitoring from the ground up later.
2024-11-10 16:34:10 +01:00

21 lines
371 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./accentor
./containers
./data-access
./git
./mail
./mastodon
./matrix
./nextcloud
./nginx
./torrents
];
services.postgresql = {
package = pkgs.postgresql_15;
dataDir = "${config.chvp.dataPrefix}/var/lib/postgresql/${config.services.postgresql.package.psqlSchema}";
};
}