sneeuwvlok/modules/nixos/services/development/forgejo/runners/default.nix
Chris Kruining d917f93a9f
Some checks failed
Test action / Print hello world (push) Failing after 12s
finally some more success?????
2025-09-04 13:55:13 +02:00

13 lines
No EOL
233 B
Nix

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