add anstml runner

This commit is contained in:
Noa Aarts 2024-11-13 10:17:24 +01:00
parent 7e84e748e3
commit 4b706450be
Signed by: noa
GPG key ID: 1850932741EFF672
3 changed files with 23 additions and 0 deletions

View file

@ -158,6 +158,7 @@
identityPaths = [ "${config.users.users.noa.home}/.ssh/id_ed25519" ];
secrets = {
"secrets/token-flurry".file = ../../secrets/github/flurry.age;
"secrets/token-anstml".file = ../../secrets/github/anstml.age;
"secrets/token-nixconf".file = ../../secrets/github/nixconf.age;
"secrets/nix-store-key".file = ../../secrets/nix-serve/private.age;
"rsecrets/radicale" = {
@ -181,6 +182,17 @@
tokenFile = config.age.secrets."secrets/token-flurry".path;
url = "https://github.com/itepastra/flurry";
};
anstml-runner = {
enable = true;
extraPackages = with pkgs; [
nodejs
curl
];
name = "anstml-runner";
replace = true;
tokenFile = config.age.secrets."secrets/token-anstml".path;
url = "https://github.com/itepastra/anstml";
};
};
openssh = {
enable = true;