all repos — homestead @ 3dde69cd0394b0f1fa33f7a7a773acabfa8acaa2

Code for my website

move redis to own devShell package set

Alin
commit

3dde69cd0394b0f1fa33f7a7a773acabfa8acaa2

parent

628ce84dd6f2c7baf327f22267cb1bcc45271ab5

1 file changed, 4 insertions(+), 2 deletions(-)

changed files
M flake.nixflake.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;