NixOS-Config/nixos/queen/postgres.nix

36 lines
717 B
Nix
Raw Normal View History

2023-11-27 15:06:57 +01:00
{
config,
pkgs,
...
}: {
services.postgresql = {
enable = true;
# Ensure the database, user, and permissions always exist
2023-11-27 15:10:39 +01:00
ensureDatabases = [
"nextcloud"
"onlyoffice"
"akkoma"
"gotosocial"
];
2023-11-27 15:06:57 +01:00
ensureUsers = [
{
name = "nextcloud";
ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES";
}
{
name = "onlyoffice";
ensurePermissions."DATABASE onlyoffice" = "ALL PRIVILEGES";
}
{
name = "akkoma";
ensurePermissions."DATABASE akkoma" = "ALL PRIVILEGES";
}
{
name = "gotosocial";
ensurePermissions."DATABASE gotosocial" = "ALL PRIVILEGES";
}
];
};
}