mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-18 18:22:29 -05:00
19 lines
274 B
Nix
19 lines
274 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.overseer.enable {
|
|
############
|
|
# Database #
|
|
############
|
|
services.postgresql = {
|
|
enable = true;
|
|
ensureUsers = [
|
|
{
|
|
name = "matrix-synapse";
|
|
ensureDBOwnership = true;
|
|
}
|
|
];
|
|
};
|
|
}
|