Adding gnugrep to cachix (#14)

I have seen in `install-cachix-actions` that you use gnugrep. While we cannot do `nix-env -iA nixpkgs.gnugrep` inside the image, I prefer to put gnugrep by default in `cachix` image.
This commit is contained in:
Andika Demas Riyandi 2021-02-10 15:24:37 +07:00 committed by GitHub
parent f01e5ddc49
commit 415031b849
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
}: }:
(docker-nixpkgs.nix.override { (docker-nixpkgs.nix.override {
nix = nix; nix = nix;
extraContents = [ cachix ]; extraContents = [ cachix gnugrep ];
}).overrideAttrs (prev: { }).overrideAttrs (prev: {
meta = (prev.meta or {}) // { meta = (prev.meta or {}) // {
description = "Nix and Cachix image"; description = "Nix and Cachix image";