services-flake/doc/pgadmin.md
2024-03-13 08:25:38 -04:00

19 lines
352 B
Markdown

# pgAdmin
[pgAdmin] is a feature rich Open Source administration and development platform for #[[postgresql]].
[pgAdmin]: https://www.pgadmin.org/
## Getting Started
```nix
# In `perSystem.process-compose.<name>`
{
services.pgadmin."pgad1" = {
enable = true;
initialEmail = "email@gmail.com";
initialPassword = "password";
};
}
```