images/attic: init (#95)

Crate image with attic-client.
This commit is contained in:
Cobalt 2025-08-10 08:47:03 +02:00 committed by GitHub
parent 96c221d72c
commit 9a5876396f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
images/attic/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ docker-nixpkgs
, attic-client
}:
(docker-nixpkgs.nix.override {
extraContents = [ attic-client ];
}).overrideAttrs (prev: {
meta = (prev.meta or { }) // {
description = "Nix and Attic client image";
};
})