Enable the relevant config option and move to new network with an explicit IPv6, because otherwise there's no default v6 route and v6 in the Docker containers doesn't work.
10 lines
162 B
Nix
10 lines
162 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
networking = {
|
|
hostName = "forgejo-actions-runner";
|
|
domain = "hosts.hamburg.ccc.de";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|