pub-solar-os/profiles/postgres/default.nix
Timothy DeHerrera 14edf3fd19
fix various linting errors throughout the repo
* replace `rec` attrs with let bindings
* remove unused args
2020-07-30 22:13:41 -06:00

9 lines
135 B
Nix

{ pkgs, ... }: {
services.postgresql = {
enable = true;
dataDir = "/srv/postgres";
package = pkgs.postgresql_12;
};
}