From 114e747b4408e0264574822a411f6875ac6bdd33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Mon, 25 Sep 2023 20:22:07 +0200 Subject: [PATCH] Add an empty secrets.json for hercules-ci --- modules/nixos/common/hercules.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/nixos/common/hercules.nix b/modules/nixos/common/hercules.nix index b372e00..eeed62e 100644 --- a/modules/nixos/common/hercules.nix +++ b/modules/nixos/common/hercules.nix @@ -1,5 +1,6 @@ { config, + pkgs, lib, ... }: { @@ -26,6 +27,7 @@ clusterJoinTokenPath = config.age.secrets.hercules-token.path; concurrentTasks = lib.mkDefault 4; binaryCachesPath = config.age.secrets.hercules-cache.path; + secretsJsonPath = pkgs.writeText "secrets.json" "{}"; }; }; };