blob: 4462ff2855f08a9ee6181150396f878f08b4df51 (
plain) (
tree)
|
|
{ config, ... }: let
secret_path = "misc/nocodb-runner-registration-token";
repo = "nocodb/nocodb";
in {
sops.secrets.${secret_path} = {};
services.github-runners.kay = {
enable = true;
noDefaultLabels = true;
extraLabels = [ "nix" ];
tokenFile = config.sops.secrets.${secret_path}.path;
url = "https://github.com/${repo}";
};
}
|