nixos-config/modules/nixos/services/default.nix
Charlotte Van Petegem f28b8d06f4
All checks were successful
Cachix / build (marabethia) (push) Successful in 6m38s
Cachix / build (elendel) (push) Successful in 3m10s
Cachix / build (kholinar) (push) Successful in 6m4s
Configure entrance exam
2025-05-21 15:30:41 +02:00

22 lines
364 B
Nix

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