From 27bdb484669df9cdd7d74f46aa3ae54ede557197 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sat, 30 May 2026 12:09:42 +0300 Subject: [PATCH] Enable NixOS Gitea runners --- nixos/hosts/cloud-pc/default.nix | 3 ++- nixos/hosts/mini-pc/default.nix | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/cloud-pc/default.nix b/nixos/hosts/cloud-pc/default.nix index 8eb834b..a8fc435 100644 --- a/nixos/hosts/cloud-pc/default.nix +++ b/nixos/hosts/cloud-pc/default.nix @@ -81,8 +81,9 @@ ]; services.gitea-actions-runner.instances."cloud-pc-nixos" = { + enable = true; name = "cloud-pc-nixos"; - url = "https://git.ada-dev.ru"; # поменяй на свой URL + url = "https://git.ada-dev.ru"; tokenFile = "/etc/gitea-runner/cloud-pc-nixos.token"; labels = [ "cloud-pc-nixos" ]; }; diff --git a/nixos/hosts/mini-pc/default.nix b/nixos/hosts/mini-pc/default.nix index 18cbd63..1cfaf56 100644 --- a/nixos/hosts/mini-pc/default.nix +++ b/nixos/hosts/mini-pc/default.nix @@ -76,8 +76,9 @@ ''; services.gitea-actions-runner.instances."mini-pc-nixos" = { + enable = true; name = "mini-pc-nixos"; - url = "https://git.ada-dev.ru"; # поменяй на свой URL + url = "https://git.ada-dev.ru"; tokenFile = "/etc/gitea-runner/mini-pc-nixos.token"; labels = [ "mini-pc-nixos" ]; };