2024-05-13 17:15:50 -05:00
|
|
|
{ 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; [
|
2024-05-18 04:43:20 -05:00
|
|
|
stylua
|
2024-05-13 17:15:50 -05:00
|
|
|
tree-sitter
|
|
|
|
fd
|
2024-05-18 06:51:27 -05:00
|
|
|
nodejs-slim
|
2024-05-13 17:15:50 -05:00
|
|
|
neovim
|
|
|
|
gnumake
|
|
|
|
gcc
|
|
|
|
curl
|
|
|
|
gnutar
|
|
|
|
git
|
|
|
|
coreutils
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-05-17 02:03:41 -05:00
|
|
|
}
|