mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-12 04:40:42 -05:00
11 lines
206 B
Nix
11 lines
206 B
Nix
{ docker-nixpkgs
|
|
, cachix
|
|
}:
|
|
(docker-nixpkgs.nix-flakes.override {
|
|
extraContents = [ cachix ];
|
|
}).overrideAttrs (prev: {
|
|
meta = (prev.meta or { }) // {
|
|
description = "Nix and Cachix image";
|
|
};
|
|
})
|