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

25 lines
531 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; [
stylua
tree-sitter
fd
nodejs-slim
neovim
gnumake
gcc
curl
gnutar
git
coreutils
];
};
};
}