From 53ba0c815d998e9167a22c8cea1d17c43609b73d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20M=C3=BChl?= Date: Fri, 27 Feb 2026 00:26:37 +0100 Subject: [PATCH] fix: devShell packages with sd-card tools Use inputsFrom instead of concatenating to packages list --- flake.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 39ff075..c8f17f3 100644 --- a/flake.nix +++ b/flake.nix @@ -169,12 +169,11 @@ }; devShells.default = pkgs.mkShell { - packages = - sd-card.packages.${system}.tools # tea, jq, nodejs, playwright - ++ (with pkgs; [ - nodejs - nodePackages.npm - ]); + packages = with pkgs; [ + nodejs + nodePackages.npm + ]; + inputsFrom = [sd-card.packages.${system}.tools]; }; }; };