mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
68bcfce997
Useful for testing purposes without having to spin up a docker container.
10 lines
117 B
Nix
10 lines
117 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.postgresql.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pgcli
|
|
];
|
|
}
|