tsuru: update secret pathing
All checks were successful
flake check / check (push) Successful in 4m17s
fmt check / check (push) Successful in 58s

This commit is contained in:
notohh 2024-01-16 01:52:46 -05:00
parent a25858bac3
commit 0d6aaaa943
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -4,9 +4,15 @@
... ...
}: { }: {
sops.secrets = { sops.secrets = {
snowflake-runner-token = {}; snowflake-runner-token = {
basegbot-runner-token = {}; sopsFile = ../../../secrets/runners/secrets.yaml;
nixgarden-runner-token = {}; };
basegbot-runner-token = {
sopsFile = ../../../secrets/runners/secrets.yaml;
};
notohh-dev-runner-token = {
sopsFile = ../../../secrets/runners/secrets.yaml;
};
}; };
services.gitea-actions-runner = { services.gitea-actions-runner = {
package = pkgs.forgejo-actions-runner; package = pkgs.forgejo-actions-runner;
@ -56,7 +62,7 @@
gitMinimal gitMinimal
]; ];
}; };
instances.nix-garden = { instances.notohh-dev = {
settings = { settings = {
container = { container = {
network = "host"; network = "host";
@ -64,7 +70,7 @@
}; };
enable = true; enable = true;
name = config.networking.hostName; name = config.networking.hostName;
token = config.sops.secrets.nixgarden-runner-token.path; token = config.sops.secrets.notohh-dev-runner-token.path;
url = "https://git.flake.sh"; url = "https://git.flake.sh";
labels = [ labels = [
"debian-latest:docker://node:18-bullseye" "debian-latest:docker://node:18-bullseye"