postgres: init profile

This commit is contained in:
Timothy DeHerrera 2020-01-08 13:40:53 -07:00
parent fd50518214
commit ed6a3e2e00
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }: {
services.postgresql = {
enable = true;
dataDir = "/srv/postgres";
package = pkgs.postgresql_12;
};
}