sneeuwvlok/modules/nixos/services/development/forgejo/runners/default.nix
Chris Kruining b8e43fedba
Some checks failed
Test action / Print hello world (push) Failing after 13s
lets try another avenue...
2025-09-04 13:47:02 +02:00

11 lines
No EOL
214 B
Nix

{
pkgs ? import <nixpkgs> {},
pkgs_linux ? import <nixpkgs> { system = "x86_64-linux"; },
}:
pkgs.dockerTools.buildImage {
name = "default";
config = {
Cmd = [ "${pkgs_linux.hello}/bin/hello" ];
};
}