From 754d1df9826f0a38e31ef9c6de4c27ce170484c0 Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Fri, 18 Aug 2023 16:38:31 -0500 Subject: [PATCH] fix: add sapling to the nix flake --- flake.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3a027ea6051aa..7194d808b2dfc 100644 --- a/flake.nix +++ b/flake.nix @@ -53,6 +53,7 @@ protobuf protoc-gen-go ripgrep + sapling shellcheck shfmt sqlc @@ -109,10 +110,11 @@ mkdir -p /etc/init.d ''; }; + allPackages = devShellPackages ++ devImagePackages; # Environment variables that live in `/etc/environment` in the container. # These will also be applied to the container config. devEnvVars = [ - "PATH=${pkgs.lib.makeBinPath (devShellPackages ++ devImagePackages)}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/coder/go/bin" + "PATH=${pkgs.lib.makeBinPath (allPackages)}:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/coder/go/bin" # This setting prevents Go from using the public checksum database for # our module path prefixes. It is required because these are in private # repositories that require authentication.