chore: add grep to images

This commit is contained in:
technofab 2024-03-17 16:53:03 +01:00
parent 85e18c5766
commit 12e55ad0b7

View file

@ -107,7 +107,12 @@
};
copyToRoot = pkgs.buildEnv {
name = "image-root";
paths = [pkgs.gitMinimal] ++ extraPackages;
paths =
[
pkgs.gitMinimal
pkgs.gnugrep
]
++ extraPackages;
pathsToLink = ["/bin"];
};
};