nixos-config/modules/services/default.nix
2023-06-07 15:31:08 +02:00

21 lines
293 B
Nix

{ config, pkgs, ... }:
{
imports = [
./accentor
./containers
./data-access
./garmin-scraper
./git
./grafana
./mail
./mastodon
./matrix
./nextcloud
./nginx
./syncthing
./torrents
];
services.postgresql.package = pkgs.postgresql_15;
}