nixos-config/modules/services/default.nix
2023-01-23 14:52:12 +01:00

21 lines
291 B
Nix

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