refactor(hosts/luna): remove github runner

This commit is contained in:
Price Hiller 2024-10-03 05:13:47 -05:00
parent eab51920fd
commit 84d588e465
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -1,24 +0,0 @@
{ 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
];
};
};
}