diff --git a/ci-runner/configuration.nix b/ci-runner/configuration.nix index b8d4c65..5bae59f 100644 --- a/ci-runner/configuration.nix +++ b/ci-runner/configuration.nix @@ -49,26 +49,26 @@ pkgs.forgejo-actions-runner ]; - -# Forgejo actions runner -services.gitea-actions-runner = { - - instances = { - "shibepro-ci" = { - url = "https://git.shibe.pro"; - name = "shibepro-ci"; - token = "sDkclN4DPqxIF6bKlkLtkRuOtGuIcn9hEml1LPC6"; - labels = []; - }; - }; -}; # Enable docker virtualisation.docker = { + enable = true; daemon.settings = { fixed-cidr-v6 = "fd00::/80"; ipv6 = true; }; }; +# Forgejo actions runner +services.gitea-actions-runner = { + instances = { + "shibepro-ci" = { + url = "https://git.shibe.pro"; + name = "shibepro-ci"; + token = "sDkclN4DPqxIF6bKlkLtkRuOtGuIcn9hEml1LPC6"; + labels = []; + }; + }; +}; + # Enable the OpenSSH daemon. services.openssh = { enable = true;