From 29dc215ba7414a423c02e057f12e25c6f958efb2 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Sun, 14 Jun 2026 22:24:07 -0400 Subject: [PATCH] Support diesel in flake Add diesel-cli to dev environment Add postgresql, include rust in package build dependencies --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 655d552..60259f5 100644 --- a/flake.nix +++ b/flake.nix @@ -77,11 +77,13 @@ }; build-pkgs = with pkgs; [ + rust dioxus-cli wasm-bindgen-cli_0_2_123 binaryen lld tailwindcss_4 + postgresql ]; in rec { @@ -90,7 +92,7 @@ DAISYUI_THEME_PATH = "${daisyui-theme}"; buildInputs = with pkgs; [ - rust + diesel-cli ] ++ build-pkgs; };