nix-dotfiles/modules/nixos/mind.nix

12 lines
256 B
Nix

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