summaryrefslogtreecommitdiff
path: root/config/postgresql.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/postgresql.nix')
-rw-r--r--config/postgresql.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/postgresql.nix b/config/postgresql.nix
new file mode 100644
index 0000000..8f421a1
--- /dev/null
+++ b/config/postgresql.nix
@@ -0,0 +1,5 @@
+{ config, lib, pkgs, ... }:
+{
+ services.postgresql.enable = true;
+ services.postgresql.package = pkgs.postgresql_11;
+};