fix: devShell packages with sd-card tools

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 b2338e5e07
commit 03476c1cc5

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];
}; };
}; };
}; };