tsuru: add nixgarden runner

This commit is contained in:
notohh 2023-12-30 20:47:28 -05:00
parent beb87f47a6
commit 9cc7a11663
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -53,5 +53,30 @@
gitMinimal
];
};
instances.nixgarden = {
settings = {
container = {
network = "host";
};
};
enable = true;
name = config.networking.hostName;
token = "ufM3x5MANdcIg9qb7LTJrC7dAi9Kw6DmVXDDX3HL";
url = "https://git.flake.sh";
labels = [
"debian-latest:docker://node:18-bullseye"
"ubuntu-latest:docker://node:18-bullseye"
#"native:host"
];
hostPackages = with pkgs; [
bash
curl
coreutils
wget
gitMinimal
python3
python311Packages.pip
];
};
};
}