feat: initial commit

This commit is contained in:
Tamipes 2026-01-12 18:53:31 +01:00
commit 2115272632
3 changed files with 198 additions and 0 deletions

14
flake.nix Normal file
View file

@ -0,0 +1,14 @@
{
description = "Base Forgejo Actions Image builder";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nix.url = "github:nixos/nix";
};
outputs = { nixpkgs, nix, self }:
let pkgs = import nixpkgs { system = "x86_64-linux"; }; in {
packages.x86_64-linux.default = import (nix + "/docker.nix") {
inherit pkgs;
extraPkgs = [ pkgs.nodejs ];
};
};
}