From 212ce96300d667dce370441f500cc67fbf5b1b5a Mon Sep 17 00:00:00 2001 From: winzlieb Date: Sun, 5 Sep 2021 19:46:19 +0200 Subject: [PATCH] adding shell nic --- shell.nix | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..4a0e5bb --- /dev/null +++ b/shell.nix @@ -0,0 +1,4 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = [ pkgs.postgresql_14 ]; +}