diff options
author | Alan Pearce | 2023-07-01 09:55:12 +0200 |
---|---|---|
committer | Alan Pearce | 2023-07-01 09:55:12 +0200 |
commit | 55f901bcc06ad8e61de62f9fc88049c1034c1bac (patch) | |
tree | e6a9c5e7710e3f98819ff8e8d35d0f10b7742d6a | |
parent | f94321a27b8ef36423445b021f53593cb46a9864 (diff) | |
download | website-55f901bcc06ad8e61de62f9fc88049c1034c1bac.tar.lz website-55f901bcc06ad8e61de62f9fc88049c1034c1bac.tar.zst website-55f901bcc06ad8e61de62f9fc88049c1034c1bac.zip |
Fix access to tools from nativeBuildInputs
-rw-r--r-- | flake.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index bbc1329..d788db4 100644 --- a/flake.nix +++ b/flake.nix @@ -47,10 +47,9 @@ }; devShell = pkgs.mkShell { buildInputs = with pkgs; [ - nativeBuildInputs caddy flyctl - ]; + ] ++ nativeBuildInputs; }; }); } |