move redis to own devShell package set
1 file changed, 4 insertions(+), 2 deletions(-)
changed files
M flake.nix → flake.nix
@@ -27,6 +27,8 @@ govulncheck hyperlink just ko + ]; + ciPackages = with pkgs; [ redis ]; devPackages = with pkgs; [@@ -53,11 +55,11 @@ in { devShells = { ci = pkgs.mkShell { - packages = commonShellPackages; + packages = commonShellPackages ++ ciPackages; }; default = pkgs.mkShell { inherit (self.checks.${system}.pre-commit-check) shellHook; - packages = devPackages ++ commonShellPackages; + packages = commonShellPackages ++ devPackages; }; }; formatter = treefmtEval.config.build.wrapper;