fix: devShell packages with sd-card tools
All checks were successful
Build and Push OCI Image / build (pull_request) Successful in 1m57s
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:
parent
9621c1b727
commit
53ba0c815d
1 changed files with 5 additions and 6 deletions
11
flake.nix
11
flake.nix
|
|
@ -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
|
nodejs
|
||||||
++ (with pkgs; [
|
nodePackages.npm
|
||||||
nodejs
|
];
|
||||||
nodePackages.npm
|
inputsFrom = [sd-card.packages.${system}.tools];
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue