dots/hosts/luna/modules/services/github-runner.nix
Price Hiller 8625c78fd7
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m24s
style: format
2024-05-17 02:03:41 -05:00

23 lines
496 B
Nix

{ 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
];
};
};
}