{ config, pkgs, lib, inputs, ... }: { environment.systemPackages = with pkgs; [ docker ]; # Enable docker virtualisation.docker = { enable = true; daemon.settings = { fixed-cidr-v6 = "fd00::/80"; ipv6 = true; }; }; # Forgejo actions runner services.gitea-actions-runner = { package = config.pkgsInstances.unstable.forgejo-runner; instances = { "shibepro-ci" = { enable = true; url = "https://git.shibe.pro"; name = "shibepro-ci"; tokenFile = config.sops.secrets."hosts/forgejo-ci/forgejo_ci_token".path; labels = []; }; }; }; }