From 84d588e465429eb428d5b6b2fdca39006eb2d824 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 3 Oct 2024 05:13:47 -0500 Subject: [PATCH] refactor(hosts/luna): remove github runner --- hosts/luna/modules/services/github-runner.nix | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 hosts/luna/modules/services/github-runner.nix diff --git a/hosts/luna/modules/services/github-runner.nix b/hosts/luna/modules/services/github-runner.nix deleted file mode 100644 index 9f576eab..00000000 --- a/hosts/luna/modules/services/github-runner.nix +++ /dev/null @@ -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 - ]; - }; - }; -}