tsuru: update secret pathing
All checks were successful
flake check / check (push) Successful in 4m17s
fmt check / check (push) Successful in 58s
All checks were successful
flake check / check (push) Successful in 4m17s
fmt check / check (push) Successful in 58s
This commit is contained in:
parent
a25858bac3
commit
0d6aaaa943
1 changed files with 11 additions and 5 deletions
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue