forked from Fediversity/Fediversity
add woodpecker status: agents error `agent could not auth: individual agent not found by token: sql: no rows in result set` allow manual set `image: bash` to initally test `local` woodpecker back-end split CI jobs image: `bash` (`local` back-end) -> `nixos/nix` (`docker` back-end) add debugging lines to CD pipeline to debug error `Could not open a connection to your authentication agent` add more debug prints to CD even more debugging continue debugging debug harder explicitly specify flakes as nixos/nix image is missing this rm /home update fedi203 wrap faulty statement fix check-resources split strace pkg un-strace un-test cd dedupe image max 5 un-bash strace configure user simplify secrets set just group for system users unverbose npins schema add flakes flakes
26 lines
445 B
Nix
26 lines
445 B
Nix
{
|
|
_class = "nixops4Resource";
|
|
|
|
fediversityVm = {
|
|
name = "fedi203";
|
|
isFediversityVm = true;
|
|
vmId = 203;
|
|
description = "woodpecker";
|
|
|
|
domain = "abundos.eu";
|
|
ipv4 = {
|
|
address = "95.215.187.203";
|
|
gateway = "95.215.187.1";
|
|
};
|
|
ipv6 = {
|
|
address = "2a00:51c0:13:1305::203";
|
|
gateway = "2a00:51c0:13:1305::1";
|
|
};
|
|
};
|
|
|
|
nixos.module = {
|
|
imports = [
|
|
./woodpecker.nix
|
|
];
|
|
};
|
|
}
|