dots/hosts/luna/modules/services/github-runner.nix
Price Hiller 5a2f0af065
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m24s
feat(nix/host/luna): add github runner for nvim-ts-autotag
2024-05-13 17:15:50 -05:00

22 lines
495 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
];
};
};
}