about summary refs log tree commit diff stats
path: root/flake.nix
diff options
context:
space:
mode:
authorAlan Pearce2023-07-01 09:55:12 +0200
committerAlan Pearce2023-07-01 09:55:12 +0200
commit55f901bcc06ad8e61de62f9fc88049c1034c1bac (patch)
treee6a9c5e7710e3f98819ff8e8d35d0f10b7742d6a /flake.nix
parentf94321a27b8ef36423445b021f53593cb46a9864 (diff)
downloadwebsite-55f901bcc06ad8e61de62f9fc88049c1034c1bac.tar.lz
website-55f901bcc06ad8e61de62f9fc88049c1034c1bac.tar.zst
website-55f901bcc06ad8e61de62f9fc88049c1034c1bac.zip
Fix access to tools from nativeBuildInputs
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
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;
           };
         });
 }