nix-dotfiles/nixos_modules/mind.nix
2022-05-07 15:18:05 +02:00

20 lines
309 B
Nix

{
services.postgresql = {
enable = true;
ensureDatabases = [
"mfh"
];
ensureUsers = [
{
name = "bertof";
ensurePermissions = {
"DATABASE \"mfh\"" = "ALL PRIVILEGES";
};
}
];
};
services.apache-kafka = {
enable = true;
};
}