nix-config/modules/postgres.nix
Donovan Glover 68bcfce997
meta: Add postgres
Useful for testing purposes without having to spin up a docker
container.
2024-01-25 17:32:47 -05:00

10 lines
117 B
Nix

{ pkgs, ... }:
{
services.postgresql.enable = true;
environment.systemPackages = with pkgs; [
pgcli
];
}