From 63f25c211af4c66b49460a688bdf147591ac7484 Mon Sep 17 00:00:00 2001 From: NexVeridian Date: Mon, 25 Aug 2025 22:31:32 -0700 Subject: [PATCH] action attic image --- images/action-attic/default.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 images/action-attic/default.nix diff --git a/images/action-attic/default.nix b/images/action-attic/default.nix new file mode 100644 index 0000000..990aa7e --- /dev/null +++ b/images/action-attic/default.nix @@ -0,0 +1,21 @@ +{ + docker-nixpkgs, + pkgs, + attic-client, + nodejs_24, + nix-fast-build, +}: +(docker-nixpkgs.nix.override { + nix = pkgs.nixVersions.latest; + + extraContents = [ + attic-client + nodejs_24 + nix-fast-build + ]; +}).overrideAttrs + (prev: { + meta = (prev.meta or { }) // { + description = "Forgejo action image, with Nix and Attic client"; + }; + })