From 78825612b6f766f89c475005ce84fa4ea8c55997 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Wed, 28 Dec 2022 00:44:11 +0000 Subject: [PATCH] Try and fix bundix -m --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 2b3ddac01..3020bb503 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,9 @@ ''; }; bundix = pkgs.mkShell { - buildInputs = [ pkgs.bundix ]; + buildInputs = with pkgs; [ + bundix postgresql pkg-config + ]; shellHook = '' PS1="(bundix) $PS1" '';