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