From: self <self@awful.systems>
Date: Tue, 25 Jul 2023 12:15:46 +0000 (-0700)
Subject: add more tooling to the Nix flake
X-Git-Url: http://these/git/%7B%60%24%7BarchiveTodayUrl%7D/%22https:/hacktivis.me/static/gitweb.css?a=commitdiff_plain;h=747859178e8f04bf6c9947646fe8ad2262881875;p=lemmy.git

add more tooling to the Nix flake
---

diff --git a/flake.nix b/flake.nix
index 4a3094fb..81cb3dd1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -20,7 +20,16 @@
           default = self.packages.x86_64-linux.lemmy-server;
         };
 
-        devShells.default =
-          pkgs.mkShell { buildInputs = [ pkgs.rustc pkgs.cargo ]; };
+        devShells.default = pkgs.mkShell {
+          buildInputs = [
+            pkgs.rustc
+            pkgs.cargo
+            pkgs.clippy
+            pkgs.diesel-cli
+            pkgs.pkg-config
+            pkgs.openssl
+            pkgs.postgresql
+          ];
+        };
       });
 }