mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-09 14:30:06 +01:00
10 lines
117 B
Nix
10 lines
117 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.postgresql.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pgcli
|
|
];
|
|
}
|