18 lines
330 B
Nix
18 lines
330 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services = {
|
||
|
pleroma = {
|
||
|
enable = true;
|
||
|
configs = [ "import Config" ];
|
||
|
};
|
||
|
postgresql = {
|
||
|
ensureDatabases = [ "pleroma" ];
|
||
|
ensureUsers = [{
|
||
|
name = "pleroma";
|
||
|
ensurePermissions = { "DATABASE pleroma" = "ALL PRIVILEGES"; };
|
||
|
}];
|
||
|
};
|
||
|
};
|
||
|
}
|