nix-config/modules/postgres.nix

10 lines
117 B
Nix
Raw Normal View History

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