fix: devShell packages with sd-card tools
All checks were successful
Build and Push OCI Image / build (pull_request) Successful in 1m57s

Use inputsFrom instead of concatenating to packages list
This commit is contained in:
Christopher Mühl 2026-02-27 00:26:37 +01:00
parent 9621c1b727
commit 53ba0c815d
No known key found for this signature in database
GPG key ID: 925AC7D69955293F

View file

@ -169,12 +169,11 @@
}; };
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
packages = packages = with pkgs; [
sd-card.packages.${system}.tools # tea, jq, nodejs, playwright
++ (with pkgs; [
nodejs nodejs
nodePackages.npm nodePackages.npm
]); ];
inputsFrom = [sd-card.packages.${system}.tools];
}; };
}; };
}; };