dots/hosts/luna/modules/services/github-runner.nix

22 lines
495 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
services.github-runners = {
# Run jobs from https://github.com/PriceHiller/nvim-ts-autotag
nvim-ts-autotag-runner = {
enable = true;
url = "https://github.com/PriceHiller/nvim-ts-autotag";
tokenFile = config.age.secrets.gh-ts-autotag-runner-token.path;
extraPackages = with pkgs; [
tree-sitter
fd
neovim
gnumake
gcc
curl
gnutar
git
coreutils
];
};
};
}