diff --git a/configuration.nix b/configuration.nix index 2ba37af7..d8a7b06c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -143,9 +143,11 @@ in builders-use-substitutes = true; trusted-substituters = [ + "https://cache.johnbargman.net" "https://cache.nixos.org" ]; trusted-public-keys = [ + "cache.johnbargman.net:A4GtVLF/JKtEcHHcT/4rBPvjg1b+xIH1AaHvxhSzUSk=" "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ]; }; diff --git a/docs/nix-cache-PLAN.md b/docs/nix-cache-PLAN.md new file mode 100644 index 00000000..2f7bbf45 --- /dev/null +++ b/docs/nix-cache-PLAN.md @@ -0,0 +1,495 @@ +# In-House Nix Binary Cache — `cache.johnbargman.net` + +> **Created:** 2026-08-03 (refreshed from `opencode/plans/nix-cache-johnbargman-2026-07-22.md`) +> **Status:** ACTIVE +> **Branch:** `main` +> **Parent:** `remote-builder-hub-2026-07-15.md` (Phase 2/3 complete) +> **Blocks:** Fleet build times, CI pipeline reliability + +## Executive Summary + +Deploy an in-house Nix binary cache on `remote-builder` (10.88.127.51), served as +`cache.johnbargman.net` via cortex-alpha's split-horizon DNS + nginx reverse proxy. +Accessible only to LAN and WireGuard clients — no public internet exposure. + +Uses `services.nix-serve` (the standard nixpkgs binary cache server), matching the +proven `infrastructure-2` pattern deployed on `hyperhyper` for `cache.platonic.systems`. + +## Prerequisites — ALL SATISFIED + +| Prerequisite | Status | +|---|---| +| `overlord-ii-planar-topology` merged | ✅ DONE — topology uses JSON format | +| remote-builder hub config (Phase 2/3) | ✅ DONE — max-jobs=0, GC disabled, 295GB disk | +| Golden tests passing | ✅ CONFIRMED by user | +| Topology JSON format | ✅ `topology/cortex-alpha.json` with `dns.static` and `vhosts` | + +## Architecture + +``` + LAN Clients (10.88.128.0/24) + dnsmasq → cache.johnbargman.net → 10.88.128.1 + │ + ┌────▼──────────────────────────────────────┐ + │ cortex-alpha (hub, 10.88.128.1/10.88.127.1)│ + │ ┌──────────────────────────────────────┐ │ + │ │ nginx (wildcard *.johnbargman.net) │ │ + │ │ vhost: cache.johnbargman.net │ │ + │ │ → http://10.88.127.51:5001 │ │ + │ │ TLS: existing ACME wildcard cert │ │ + │ │ listen: 10.88.128.1 + 10.88.127.1 │ │ + │ └──────────────┬───────────────────────┘ │ + │ │ │ + │ ┌──────────────▼───────────────────────┐ │ + │ │ dnsmasq │ │ + │ │ address=/cache.johnbargman.net/ │ │ + │ │ 10.88.128.1 │ │ + │ └──────────────────────────────────────┘ │ + └─────────────────┬──────────────────────────┘ + │ WireGuard (encrypted) + ┌─────────────────▼──────────────────────┐ + │ remote-builder (10.88.127.51) │ + │ ┌──────────────────────────────────┐ │ + │ │ services.nix-serve │ │ + │ │ bindAddress: 10.88.127.51 │ │ + │ │ port: 5001 │ │ + │ │ secretKeyFile: secrix-decrypted │ │ + │ └──────────────────────────────────┘ │ + └───────────────────────────────────────┘ +``` + +--- + +## Phase 1 — Cache Server on remote-builder + +**Goal:** Create the cache server module and wire it into remote-builder. + +### Step 1.1: Create `services/nix-cache-serve.nix` + +**Agent:** bellana-deepseek +**Action:** Create new file + +Create `services/nix-cache-serve.nix` with the following content: + +```nix +# services/nix-cache-serve.nix +# Nix binary cache server — serves signed /nix/store paths over plain HTTP. +# TLS termination is handled by cortex-alpha's nginx reverse proxy. +# Matches the infrastructure-2 pattern (services/nix-cache-serve.nix on hyperhyper). + +{ config, lib, self, ... }: +{ + # HTTP binary cache server + services.nix-serve = { + enable = true; + secretKeyFile = config.secrix.services.nix-serve.secrets.cache-priv-key.decrypted.path; + bindAddress = "10.88.127.51"; # WireGuard IP only — not reachable from public internet + port = 5001; + }; + + # Sign locally-built derivations with the cache key so they can be served + nix.settings.secret-key-files = [ + config.secrix.services.nix-serve.secrets.cache-priv-key.decrypted.path + ]; + + # Secrix: decrypt signing key at runtime + secrix.services.nix-serve.secrets.cache-priv-key.encrypted.file = + "${self}/secrets/cache-priv-key"; +} +``` + +**References:** +- `infrastructure-2/services/nix-cache-serve.nix` — reference implementation +- `secrets/cache-priv-key` — will be created in Step 1.3 + +**Success criteria:** File exists at `services/nix-cache-serve.nix`, valid Nix syntax. + +### Step 1.2: Add import to `machines/remote-builder/default.nix` + +**Agent:** bellana-deepseek +**Action:** Edit existing file + +Add `../../services/nix-cache-serve.nix` to the imports list in `machines/remote-builder/default.nix`. + +**Current imports (lines 9-21):** +```nix +imports = [ + ./hardware-configuration.nix + ../../users/darthpjb.nix + ../../modifier_imports/flakes.nix + ../../environments/sshd.nix + ../../environments/tools.nix + ../../services/dynamic_domain_gandi.nix + ../../services/mkRunners.nix + ../../services/gitlab-credentials.nix + ../../modifier_imports/remote-builder.nix + ../../users/build.nix + ../../modules/enable-wg-topology.nix +]; +``` + +**Add after last import:** +```nix + ../../services/nix-cache-serve.nix +``` + +**Success criteria:** Import line present, no syntax errors. + +### Step 1.3: Generate and encrypt signing keys + +**Agent:** USER (manual, offline operation) +**Action:** Key generation + secrix encryption + +**CRITICAL:** The private key must never exist in plaintext on disk. Generate and encrypt in one session. + +```bash +# 1. Generate private key (to temp file) +nix key generate-secret --key-name cache.johnbargman.net > /tmp/cache-priv-key + +# 2. Extract public key +nix key convert-secret-to-public < /tmp/cache-priv-key > /tmp/cache-pub-key + +# 3. Encrypt private key with secrix (all users + remote-builder host) +nix run .#secrix create ./secrets/cache-priv-key -- --all-users -s remote-builder < /tmp/cache-priv-key + +# 4. Copy public key to repo +cp /tmp/cache-pub-key secrets/cache-pub-key + +# 5. Clean up plaintext +rm /tmp/cache-priv-key /tmp/cache-pub-key + +# 6. Verify +ls -la secrets/cache-priv-key secrets/cache-pub-key +cat secrets/cache-pub-key # Note this value — needed for Phase 3 +``` + +**References:** +- `secrix-fast-encryption.md` — secrix encrypt workflow +- `common-infra-strategies.md` — secrix integration patterns + +**Success criteria:** +- `secrets/cache-priv-key` exists (encrypted, secrix-managed) +- `secrets/cache-pub-key` exists (plaintext, public key) +- Public key format: `cache.johnbargman.net:` + +### Phase 1 Verification Gate (tpol-minimax) + +- [ ] `services/nix-cache-serve.nix` exists and is syntactically valid +- [ ] Import added to `machines/remote-builder/default.nix` +- [ ] `secrets/cache-priv-key` exists (encrypted) +- [ ] `secrets/cache-pub-key` exists (plaintext) +- [ ] No plaintext private key on disk + +--- + +## Phase 2 — DNS + Nginx on cortex-alpha + +**Goal:** Add cache.johnbargman.net to cortex-alpha's topology (DNS + nginx vhost). + +### Step 2.1: Add DNS static entry to `topology/cortex-alpha.json` + +**Agent:** bellana-deepseek +**Action:** Edit existing file + +Add to `dns.static` array in `topology/cortex-alpha.json`: + +```json +{ + "domain": "cache.johnbargman.net", + "ip": "10.88.128.1" +} +``` + +**Current `dns.static` structure (example entry):** +```json +{ + "domain": "git.johnbargman.net", + "ip": "10.88.128.1" +} +``` + +**Success criteria:** New entry in `dns.static` array, valid JSON. + +### Step 2.2: Add nginx vhost to `topology/cortex-alpha.json` + +**Agent:** bellana-deepseek +**Action:** Edit existing file + +Add to `vhosts` object in `topology/cortex-alpha.json`: + +```json +"cache.johnbargman.net": [ + { + "proxy_to": "10.88.127.51:5001", + "proxy_headers": true + } +] +``` + +**Current `vhosts` structure (example entry):** +```json +"git.johnbargman.net": [ + { + "proxy_to": "10.88.127.3:80", + "regex_prefix": true, + "proxy_headers": true + } +] +``` + +**Success criteria:** New vhost entry, valid JSON, proxy_to points to remote-builder:5001. + +### Phase 2 Verification Gate (tpol-minimax) + +- [ ] DNS static entry present in `topology/cortex-alpha.json` +- [ ] Nginx vhost present in `topology/cortex-alpha.json` +- [ ] JSON is valid (`jq . topology/cortex-alpha.json > /dev/null`) +- [ ] No other topology files modified + +--- + +## Phase 3 — Fleet-Wide Trust Configuration + +**Goal:** Configure all fleet machines to trust the cache. + +### Step 3.1: Modify `configuration.nix` + +**Agent:** bellana-deepseek +**Action:** Edit existing file + +Add `cache.johnbargman.net` to `nix.settings` in `configuration.nix`: + +**Current (around line 145):** +```nix +trusted-substituters = [ + "https://cache.nixos.org" +]; +trusted-public-keys = [ + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" +]; +``` + +**Add (FIRST in each list for priority):** +```nix +trusted-substituters = [ + "https://cache.johnbargman.net" # ADD THIS + "https://cache.nixos.org" +]; +trusted-public-keys = [ + "cache.johnbargman.net:" # ADD THIS — replace with actual key + "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" +]; +``` + +**Note:** `` is the content of `secrets/cache-pub-key`. + +**Success criteria:** Both lists updated, cache is first in substituters list. + +### Step 3.2: Modify `flake.nix` + +**Agent:** bellana-deepseek +**Action:** Edit existing file + +Add to `nixConfig` block in `flake.nix`: + +**Current (around line 5):** +```nix +nixConfig = { + extra-substituters = [ "https://install.determinate.systems" ]; + extra-trusted-public-keys = [ + "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM=" + "install.determinate.systems:a7GMGXFqz7lFjOE45sTRq1g/RX6KFHRKHXOHTi1uFhM=" + ]; +}; +``` + +**Add:** +```nix +nixConfig = { + extra-substituters = [ + "https://cache.johnbargman.net" # ADD THIS + "https://install.determinate.systems" + ]; + extra-trusted-public-keys = [ + "cache.johnbargman.net:" # ADD THIS — replace with actual key + "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM=" + "install.determinate.systems:a7GMGXFqz7lFjOE45sTRq1g/RX6KFHRKHXOHTi1uFhM=" + ]; +}; +``` + +**Success criteria:** Both lists updated, cache is first in substituters list. + +### Phase 3 Verification Gate (tpol-minimax) + +- [ ] `configuration.nix` has cache in `trusted-substituters` and `trusted-public-keys` +- [ ] `flake.nix` has cache in `extra-substituters` and `extra-trusted-public-keys` +- [ ] Public key is consistent across all 4 locations +- [ ] Cache is first in substituters priority + +--- + +## Phase 4 — Golden Regeneration + Validation + +**Goal:** Regenerate cortex-alpha golden and validate all machines. + +### Step 4.1: Regenerate cortex-alpha golden + +**Agent:** bellana-deepseek +**Action:** Run commands + +```bash +# Regenerate cortex-alpha golden +nix run .#dump-config -- cortex-alpha | jq -S . > goldens/cortex-alpha.json + +# Validate cortex-alpha +nix run .#check-network -- cortex-alpha +``` + +**Success criteria:** Golden regenerated, validation passes. + +### Step 4.2: Validate all machines + +**Agent:** bellana-deepseek +**Action:** Run commands + +```bash +for m in $(ls machines/); do + nix run .#check-network -- "$m" 2>&1 | tail -1 +done +``` + +**Success criteria:** All machines pass golden validation. + +### Step 4.3: Verify nix eval + +**Agent:** bellana-deepseek +**Action:** Run commands + +```bash +# Verify flake evaluates +nix eval --json .#nixosConfigurations.remote-builder.config.services.nix-serve.enable --option builders '' +# Should output: true + +# Verify cortex-alpha has the new vhost +nix eval --json .#ci.ci.github-actions --option builders '' > /dev/null +# Should succeed +``` + +**Success criteria:** Nix evaluation succeeds, nix-serve is enabled on remote-builder. + +### Phase 4 Verification Gate (tpol-minimax) + +- [ ] cortex-alpha golden regenerated +- [ ] cortex-alpha golden validation passes +- [ ] All other machines pass golden validation +- [ ] Nix evaluation succeeds +- [ ] Only cortex-alpha golden changed (no other golden diffs) + +--- + +## Phase 5 — Deployment (Manual, User-Executed) + +**Goal:** Deploy remote-builder and cortex-alpha, verify cache operation. + +### Step 5.1: Deploy remote-builder + +**Agent:** USER (manual) +**Action:** Deploy + +```bash +nix run .#remote-builder -- switch +``` + +### Step 5.2: Verify nix-serve on remote-builder + +**Agent:** USER (manual) +**Action:** Verify + +```bash +# Check service status +ssh -p 1108 deploy@10.88.127.51 "systemctl status nix-serve.service" + +# Check port binding +ssh -p 1108 deploy@10.88.127.51 "ss -tlnp | grep 5001" + +# Check secrix secret +ssh -p 1108 deploy@10.88.127.51 "ls -la /run/nix-serve-keys/" +``` + +### Step 5.3: Deploy cortex-alpha + +**Agent:** USER (manual) +**Action:** Deploy + +```bash +nix run .#cortex-alpha -- switch +``` + +### Step 5.4: Verify DNS resolution + +**Agent:** USER (manual) +**Action:** Verify + +```bash +# From a LAN client +dig cache.johnbargman.net @10.88.128.1 +# Should resolve to 10.88.128.1 +``` + +### Step 5.5: Verify cache operation + +**Agent:** USER (manual) +**Action:** Verify + +```bash +# Ping the cache +nix store ping --store https://cache.johnbargman.net + +# Test substitution +nix build nixpkgs#hello --substituters https://cache.johnbargman.net --no-link +``` + +### Step 5.6: Update plan status + +**Agent:** bellana-deepseek +**Action:** Update docs + +Update `docs/nix-cache-PLAN.md` status to COMPLETE. + +--- + +## Files Changed Summary + +| File | Phase | Action | +|---|---|---| +| `services/nix-cache-serve.nix` | 1 | **NEW** | +| `machines/remote-builder/default.nix` | 1 | Add 1 import | +| `secrets/cache-priv-key` | 1 | **NEW** (encrypted) | +| `secrets/cache-pub-key` | 1 | **NEW** (plaintext) | +| `topology/cortex-alpha.json` | 2 | Add DNS + vhost | +| `configuration.nix` | 3 | Add substituters + keys | +| `flake.nix` | 3 | Add substituters + keys | +| `goldens/cortex-alpha.json` | 4 | Regenerate | + +## Deployment Sequence + +1. ✅ Verify prerequisites +2. Generate signing keys (USER, offline) +3. Create `services/nix-cache-serve.nix` (bellana-deepseek) +4. Add import to remote-builder (bellana-deepseek) +5. Add topology entries (bellana-deepseek) +6. Add fleet-wide trust (bellana-deepseek) +7. Regenerate golden + validate (bellana-deepseek) +8. Deploy remote-builder (USER) +9. Deploy cortex-alpha (USER) +10. Verify cache operation (USER) + +## References + +- `opencode/plans/nix-cache-johnbargman-2026-07-22.md` — original plan +- `opencode/plans/remote-builder-hub-2026-07-15.md` — parent plan +- `infrastructure-2/services/nix-cache-serve.nix` — reference implementation +- `secrix-fast-encryption.md` — secrix encrypt workflow +- `common-infra-strategies.md` — secrix integration patterns +- `AGENTS.md` — planned in-house binary cache diff --git a/documentation/ci-build-metrics/README.md b/documentation/ci-build-metrics/README.md new file mode 100644 index 00000000..e31196de --- /dev/null +++ b/documentation/ci-build-metrics/README.md @@ -0,0 +1,345 @@ +# CI Build Metrics + +**Repository:** DarthPJB/NixOS-Configuration +**Runner:** remote-builder (10.88.127.51) — 8 vCPU Intel Xeon Skylake, 15GB RAM, 295GB disk +**Runner Instances:** hate-filled-1, hate-filled-2 (self-hosted, NixOS) +**First Pipeline:** 2026-04-15 (run #1) +**Data Collected:** 2026-08-03 + +--- + +## Summary Statistics + +| Metric | Value | +|--------|-------| +| Total Pipelines | 255 | +| Successful | 25 | +| Failed | 203 | +| Cancelled | 21 | +| In Progress | 2 | +| Queued | 2 | +| Success Rate | 9.8% | +| Date Range | 2026-04-15 → 2026-08-03 (111 days) | + +--- + +## Timeline + +### Phase 1: Initial CI Setup (2026-04-15 → 2026-04-22) +- Runs #1–#5: Early pushes to `jb/ai/overlord-8` and `main` +- All failures — CI configuration not yet functional +- Duration: seconds to minutes (fast failures) + +### Phase 2: Overlord-I Development (2026-06-23 → 2026-07-05) +- Runs #29–#77: Active development on `jb/overlord-I` branch +- Mix of failures and first successes +- **First success:** Run #77 (2026-07-05, push to main, 8m 29s) +- Runner registration issues discovered (nixpkgs module bug) + +### Phase 3: Overlord-II Topology Work (2026-07-11 → 2026-08-03) +- Runs #78–#255: Massive topology overhaul on `overlord-II` and `overlord-ii-planar-topology` +- High failure rate due to active development +- Eval cache persistence fix deployed 2026-07-22 +- **25 successful runs** in this phase + +--- + +## Successful Run Details + +### Run #255 (2026-08-03, PR `overlord-ii-planar-topology`) +**Total Duration:** 2h 54m 39s +| Job | Runner | Duration | +|-----|--------|----------| +| Validation & Linting | hate-filled-1 | 8m 7s | +| Security Scan | GitHub Actions | 56s | +| Build ARM cross (beta-one) | hate-filled-1 | 1m 42s | +| Build ARM cross (arm-builder) | hate-filled-1 | 1m 48s | +| Build ARM native (display-1) | hate-filled-2 | 2m 36s | +| Build ARM native (display-2) | hate-filled-1 | 2m 26s | +| Build ARM native (print-controller) | hate-filled-1 | 2m 7s | +| Build x86 (cortex-alpha) | hate-filled-1 | 16m 15s | +| Build x86 (terminal-nx-01) | hate-filled-2 | 28m 34s | +| Build x86 (terminal-zero) | hate-filled-2 | 23m 4s | +| Build x86 (alpha-three) | hate-filled-2 | 29m 35s | +| Build x86 (alpha-one) | hate-filled-2 | 40m 5s | +| Build x86 (gaming-host-1) | hate-filled-1 | 30m 31s | +| Build x86 (local-nas) | hate-filled-1 | 25m 54s | +| Build x86 (remote-worker) | hate-filled-1 | 29m 39s | +| Build x86 (LINDA) | hate-filled-2 | 42m 15s | +| Build x86 (remote-builder) | hate-filled-1 | 38m 39s | + +### Run #254 (2026-08-02, PR `overlord-ii-planar-topology`) +**Total Duration:** 2h 40m 16s +| Job | Runner | Duration | +|-----|--------|----------| +| Validation & Linting | hate-filled-2 | 7m 29s | +| Security Scan | GitHub Actions | 50s | +| Build ARM cross (arm-builder) | hate-filled-1 | 1m 47s | +| Build ARM cross (beta-one) | hate-filled-2 | 1m 32s | +| Build ARM native (display-1) | hate-filled-2 | 2m 16s | +| Build ARM native (display-2) | hate-filled-1 | 2m 25s | +| Build ARM native (print-controller) | hate-filled-2 | 2m 4s | +| Build x86 (terminal-zero) | hate-filled-2 | 35m 52s | +| Build x86 (remote-builder) | hate-filled-2 | 12m 27s | +| Build x86 (cortex-alpha) | hate-filled-2 | 11m 3s | +| Build x86 (gaming-host-1) | hate-filled-2 | 35m 1s | +| Build x86 (alpha-three) | hate-filled-1 | 24m 51s | +| Build x86 (alpha-one) | hate-filled-1 | 40m 35s | +| Build x86 (local-nas) | hate-filled-1 | 19m 58s | +| Build x86 (remote-worker) | hate-filled-1 | 28m 17s | +| Build x86 (LINDA) | hate-filled-2 | 43m 51s | +| Build x86 (terminal-nx-01) | hate-filled-1 | 34m 38s | + +### Run #253 (2026-08-01, PR `overlord-ii-planar-topology`) +**Total Duration:** 4h 35m 53s +| Job | Runner | Duration | +|-----|--------|----------| +| Validation & Linting | hate-filled-1 | 7m 1s | +| Security Scan | GitHub Actions | 53s | +| Build ARM cross (beta-one) | hate-filled-1 | 1m 26s | +| Build ARM cross (arm-builder) | hate-filled-2 | 1m 39s | +| Build ARM native (display-1) | hate-filled-2 | 2m 27s | +| Build ARM native (display-2) | hate-filled-1 | 2m 15s | +| Build ARM native (print-controller) | hate-filled-2 | 1m 58s | +| Build x86 (cortex-alpha) | hate-filled-2 | 15m 47s | +| Build x86 (local-nas) | hate-filled-2 | 21m 3s | +| Build x86 (alpha-three) | hate-filled-1 | 31m 6s | +| Build x86 (alpha-one) | hate-filled-1 | 33m 44s | +| Build x86 (terminal-nx-01) | hate-filled-2 | 30m 32s | +| Build x86 (remote-builder) | hate-filled-2 | 32m 29s | +| Build x86 (LINDA) | hate-filled-1 | 58m 50s | +| Build x86 (gaming-host-1) | hate-filled-1 | 12m 18s | +| Build x86 (terminal-zero) | hate-filled-2 | 26m 5s | +| Build x86 (remote-worker) | hate-filled-1 | 32m 11s | + +--- + +## Per-Machine Build Time Averages (Post-Eval-Cache Fix, Runs #247–#255) + +### x86_64 Machines + +| Machine | Min | Max | Avg | Notes | +|---------|-----|-----|-----|-------| +| cortex-alpha | 10m 50s | 27m 44s | ~16m | Router config, moderate complexity | +| local-nas | 14m 3s | 43m 45s | ~22m | Storage services | +| terminal-nx-01 | 12m 27s | 34m 38s | ~25m | Terminal config | +| terminal-zero | 15m 12s | 35m 52s | ~27m | Terminal config | +| alpha-one | 25m 2s | 58m 35s | ~38m | Full desktop environment | +| alpha-three | 11m 17s | 31m 6s | ~22m | Test machine | +| LINDA | 12m 18s | 58m 50s | ~35m | Threadripper, complex config | +| gaming-host-1 | 12m 31s | 35m 1s | ~25m | Gaming services | +| remote-worker | 12m 27s | 32m 17s | ~25m | Web services | +| remote-builder | 7m 59s | 38m 39s | ~20m | Hub machine, minimal local config | + +### ARM Machines + +| Machine | Architecture | Min | Max | Avg | +|---------|-------------|-----|-----|-----| +| beta-one | armv7l (cross) | 46s | 1m 54s | ~1m 20s | +| arm-builder | aarch64 (cross) | 1m 26s | 1m 55s | ~1m 45s | +| display-1 | aarch64 (native) | 2m 16s | 2m 42s | ~2m 30s | +| display-2 | aarch64 (native) | 2m 15s | 2m 42s | ~2m 30s | +| print-controller | aarch64 (native) | 1m 58s | 2m 18s | ~2m 10s | + +--- + +## Key Events Timeline + +| Date | Event | Impact | +|------|-------|--------| +| 2026-04-15 | First CI pipeline (#1) | All runs failing | +| 2026-06-23 | Runner online, active development begins | Runs #29+ | +| 2026-07-05 | First successful run (#77) | 8m 29s, push to main | +| 2026-07-09 | Runner registration destroyed by reboot | LINDA down, investigation begins | +| 2026-07-10 | Registration hack deployed (ExecStartPre override) | Runner restored | +| 2026-07-11–07-13 | First batch of successful PR runs (#78–#85) | 9m–52m per run | +| 2026-07-14–07-21 | Massive failure storm (overlord-II topology work) | 80+ consecutive failures | +| 2026-07-22 | Eval cache persistence fix deployed | Backlog drained in 1 hour | +| 2026-07-22–08-03 | Stable successful runs (#247–#255) | 2h 40m – 4h 36m per run | + +--- + +## Eval Cache Impact (2026-07-22 Fix) + +### Before Fix +- Every job: 1m 45s evaluation (cold cache) +- 15 jobs per run × 1m 45s = ~26 minutes wasted per run +- Queue backlog: 20 runs, ~15+ hours to clear + +### After Fix +- Warm-cache evaluation: <5s +- Queue drained: 9 runs in first hour +- Per-machine build times reduced by ~1m 40s each + +### Cache Growth +| Time (UTC) | Cache Size | +|------------|------------| +| 11:31 | 0 (fresh) | +| 11:38 | 2 databases | +| 12:00 | 14 MB | +| 13:00 | 34 MB | + +--- + +## Build Time Distribution (Successful Runs) + +### Total Run Duration (all jobs) + +| Percentile | Duration | +|------------|----------| +| Fastest | 8m 29s (run #77, early/simple) | +| P25 | ~1h 30m | +| P50 (Median) | ~2h 45m | +| P75 | ~3h 30m | +| P95 | ~4h 36m | +| Slowest | ~5h 15m (cold cache, complex changes) | + +--- + +## Runner Infrastructure + +### Hardware +- **Machine:** remote-builder (VPS) +- **CPU:** 8 vCPU Intel Xeon Skylake +- **RAM:** 15 GB +- **Disk:** 295 GB (NVMe) +- **Network:** WireGuard VPN (10.88.127.0/24) + +### Runner Configuration +- **Instances:** 2 (hate-filled-1, hate-filled-2) +- **User:** build (UID 1111) +- **Store:** Shared /nix/store with host +- **Eval Cache:** /nix/cache (persistent, bind-mounted writable) +- **HOME:** /run/github-runner/hate-filled-N (tmpfs, ephemeral) + +### Build Distribution +- **x86_64 builds:** Dispatched to hyperhyper (100.107.101.14) via ssh-ng +- **aarch64 builds:** Dispatched to arm-builder (10.88.127.43) via ssh-ng +- **Runner itself:** Never builds locally (max-jobs=0) + +--- + +## Resource Utilization (Prometheus Metrics) + +**Source:** Prometheus node_exporter on `10.88.127.51:9100` +**Query Window:** Successful runs since eval-cache fix (2026-07-31 → 2026-08-03) + +### Hardware Baseline + +| Resource | Total | Available | Notes | +|----------|-------|-----------|-------| +| CPU | 8 vCPU Intel Xeon Skylake | — | Shared with host services | +| RAM | 16.8 GB | ~6.4 GB idle (38%) | Runner + nix-daemon + host | +| Disk (/nix) | 295 GB | ~93 GB free (31%) | Store + eval cache | +| Disk (/) | ~25 GB | ~22 GB free | Root filesystem | +| Network | WireGuard VPN | — | Builds dispatched via ssh-ng | + +### CPU Usage During Builds (Run #255, 2026-08-03) + +| Phase | CPU Usage | Load (1m) | Notes | +|-------|-----------|-----------|-------| +| Idle (between jobs) | 0.2–0.3% | 0.0 | Minimal host activity | +| Validation & Linting | 36% | 7.43 | Highest single-job CPU spike | +| ARM builds (cross) | 1–2% | 0.1–0.8 | Minimal local work (dispatched) | +| ARM builds (native) | 8–16% | 0.3–1.6 | Evaluation + dispatch overhead | +| x86 builds (warm cache) | 1–16% | 0.1–1.6 | Evaluation only, builds on hyperhyper | +| x86 builds (cold cache) | 24–38% | 2.8–7.9 | Full evaluation + path copying | +| Peak observed | 38.3% | 7.43 | During validation step | + +### Memory Usage Pattern (Run #255, 2026-08-03) + +| Phase | Memory Used | Available | Notes | +|-------|-------------|-----------|-------| +| Idle baseline | 6.4 GB (38%) | 10.4 GB | Host + nix-daemon | +| Validation start | 15.1 GB (90%) | 1.7 GB | Nix evaluation spike | +| Post-validation | 6.4 GB (38%) | 10.4 GB | Released after eval | +| Build dispatch | 10–12 GB (60–71%) | 4.8–6.8 GB | SSH connections + path copying | +| Peak observed | 15.8 GB (94%) | 1.0 GB | During nix flake check | +| Min available | 1.0 GB | — | Near-OOM during validation | + +**Critical finding:** Validation (`nix flake check`) is the most memory-intensive operation, consuming up to 94% of available RAM. Build dispatch is CPU-bound, not memory-bound. + +### Disk I/O (Run #255, 2026-08-03) + +| Phase | Disk Util (vda) | Notes | +|-------|-----------------|-------| +| Idle | 0.03–0.04% | Minimal | +| Validation | 0.08–0.10% | Eval cache reads/writes | +| Build dispatch | 0.04–0.09% | Path copies to remote builders | +| Peak observed | 0.44% | Brief spike during path copy | + +**Finding:** Disk I/O is not a bottleneck. The remote-builder's primary role is coordination, not building. + +### Network (Run #255, 2026-08-03) + +| Phase | Receive Rate | Notes | +|-------|-------------|-------| +| Idle | 0.003 MB/s | Background traffic | +| Build dispatch | 0.006–0.015 MB/s | SSH-ng path transfers | +| Peak observed | 0.015 MB/s | During x86 build dispatch | + +**Finding:** Network is not a bottleneck. Builds are dispatched to remote builders; the runner only coordinates. + +### Filesystem Growth + +| Date | /nix Available | Change | Notes | +|------|---------------|--------|-------| +| 2026-07-31 00:00 | 99.1 GB | — | Baseline | +| 2026-07-31 12:00 | 94.2 GB | -4.9 GB | Builds accumulating store paths | +| 2026-08-01 00:00 | 93.2 GB | -1.0 GB | Continued growth | +| 2026-08-02 00:00 | 93.1 GB | -0.1 GB | Stable | +| 2026-08-03 18:00 | 92.1 GB | -1.0 GB | Run #255 in progress | + +**Rate:** ~0.5–5 GB per successful run (store paths from hyperhyper copied back). At current rate, disk will reach `min-free` (10 GB) threshold in ~20 runs without GC. + +### Resource Bottleneck Analysis + +| Resource | Utilization | Bottleneck? | Notes | +|----------|-------------|-------------|-------| +| CPU | Peak 38%, avg 5–15% | **No** | Validation is CPU-heavy but brief | +| Memory | Peak 94%, avg 38% | **YES** | Validation near-OOM; 16GB is tight | +| Disk I/O | Peak 0.44% | **No** | Coordination role, not building | +| Network | Peak 0.015 MB/s | **No** | Minimal transfer volume | +| Disk Space | 68% used, growing | **Monitor** | ~20 runs until min-free threshold | + +**Primary constraint:** Memory during `nix flake check`. The 8 vCPU / 16 GB VM is CPU-adequate but memory-tight for full flake evaluation. The runner itself is not the bottleneck — it dispatches builds to hyperhyper (100+ cores, 1TB RAM). + +### Comparison: Runner vs. Build Machines + +| Metric | remote-builder (runner) | hyperhyper (builder) | arm-builder | +|--------|------------------------|---------------------|-------------| +| Role | Coordinator + GitHub runner | x86_64 build execution | aarch64 build execution | +| CPU | 8 vCPU Skylake | 100+ cores | RPi 4 (4 cores) | +| RAM | 16 GB | 1 TB | 4 GB | +| Build role | Evaluation + dispatch | Actual derivation builds | ARM builds | +| Max-jobs | 0 (never builds locally) | 10 | 3 | + +--- + +## Failure Analysis + +### Top Failure Categories (estimated from run patterns) + +| Category | Approximate % | Period | +|----------|--------------|--------| +| Nix evaluation errors | 40% | Throughout | +| Topology/config syntax errors | 25% | overlord-II work | +| Runner registration loss | 10% | 2026-07-09–07-10 | +| OOM kills | 5% | Early runner config | +| Flaky/network errors | 10% | Throughout | +| Cancelled (superseded) | 10% | Active development | + +--- + +## Raw Data + +Full run-level data: `runs-timeline.json` +Job-level data for successful runs: `successful-run-jobs.json` + +--- + +*Last updated: 2026-08-03* +*Sources:* +- *GitHub Actions API (`gh api repos/DarthPJB/NixOS-Configuration/actions/runs`)* +- *Prometheus node_exporter (`10.88.127.51:9100`) — CPU, memory, disk, network metrics* +- *Draft blogs: `personal-website-blog/draft-blogs/2026-07-22-ci-eval-cache-persistence.md`* diff --git a/documentation/ci-build-metrics/runs-timeline.json b/documentation/ci-build-metrics/runs-timeline.json new file mode 100644 index 00000000..2b15a0cf --- /dev/null +++ b/documentation/ci-build-metrics/runs-timeline.json @@ -0,0 +1,3066 @@ +[ + { + "conclusion": null, + "created_at": "2026-08-03T21:16:55Z", + "event": "pull_request", + "head_branch": "jb/package-update", + "id": 30853966038, + "name": "NixOS CI/CD", + "run_number": 255, + "run_started_at": "2026-08-03T21:21:06Z", + "status": "queued", + "updated_at": "2026-08-03T21:21:08Z" + }, + { + "conclusion": null, + "created_at": "2026-08-03T20:30:01Z", + "event": "push", + "head_branch": "main", + "id": 30850469301, + "name": "NixOS CI/CD", + "run_number": 254, + "run_started_at": "2026-08-03T20:30:01Z", + "status": "queued", + "updated_at": "2026-08-03T20:37:50Z" + }, + { + "conclusion": "success", + "created_at": "2026-08-03T17:31:45Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30837150881, + "name": "NixOS CI/CD", + "run_number": 253, + "run_started_at": "2026-08-03T17:31:45Z", + "status": "completed", + "updated_at": "2026-08-03T20:26:33Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-08-03T13:55:27Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30820216112, + "name": "NixOS CI/CD", + "run_number": 252, + "run_started_at": "2026-08-03T13:55:27Z", + "status": "completed", + "updated_at": "2026-08-03T17:32:04Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-08-03T13:55:02Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30820180861, + "name": "NixOS CI/CD", + "run_number": 251, + "run_started_at": "2026-08-03T13:55:02Z", + "status": "completed", + "updated_at": "2026-08-03T13:55:45Z" + }, + { + "conclusion": "success", + "created_at": "2026-08-02T22:49:44Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30770953961, + "name": "NixOS CI/CD", + "run_number": 250, + "run_started_at": "2026-08-02T22:49:44Z", + "status": "completed", + "updated_at": "2026-08-03T01:30:03Z" + }, + { + "conclusion": "success", + "created_at": "2026-08-01T15:30:08Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30706049306, + "name": "NixOS CI/CD", + "run_number": 249, + "run_started_at": "2026-08-01T19:33:51Z", + "status": "completed", + "updated_at": "2026-08-01T20:06:11Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-31T14:49:21Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30640229300, + "name": "NixOS CI/CD", + "run_number": 248, + "run_started_at": "2026-07-31T14:49:21Z", + "status": "completed", + "updated_at": "2026-07-31T18:31:57Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-31T14:48:40Z", + "event": "push", + "head_branch": "main", + "id": 30640181962, + "name": "NixOS CI/CD", + "run_number": 247, + "run_started_at": "2026-07-31T14:48:40Z", + "status": "completed", + "updated_at": "2026-07-31T20:16:55Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-31T10:56:30Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30625273247, + "name": "NixOS CI/CD", + "run_number": 246, + "run_started_at": "2026-07-31T10:56:30Z", + "status": "completed", + "updated_at": "2026-07-31T13:37:55Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-30T20:46:28Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30580627931, + "name": "NixOS CI/CD", + "run_number": 245, + "run_started_at": "2026-07-30T20:46:28Z", + "status": "completed", + "updated_at": "2026-07-31T07:16:49Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-30T17:49:37Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30567692443, + "name": "NixOS CI/CD", + "run_number": 244, + "run_started_at": "2026-07-30T17:49:37Z", + "status": "completed", + "updated_at": "2026-07-30T20:46:30Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-30T17:12:49Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30564968175, + "name": "NixOS CI/CD", + "run_number": 243, + "run_started_at": "2026-07-30T17:12:49Z", + "status": "completed", + "updated_at": "2026-07-31T04:20:29Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-30T14:12:50Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30550595806, + "name": "NixOS CI/CD", + "run_number": 242, + "run_started_at": "2026-07-30T14:12:50Z", + "status": "completed", + "updated_at": "2026-07-30T17:13:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-29T16:54:45Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30472913617, + "name": "NixOS CI/CD", + "run_number": 241, + "run_started_at": "2026-07-30T13:47:12Z", + "status": "completed", + "updated_at": "2026-07-30T13:48:54Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-29T16:52:35Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30472746471, + "name": "NixOS CI/CD", + "run_number": 240, + "run_started_at": "2026-07-30T17:08:43Z", + "status": "completed", + "updated_at": "2026-07-30T17:49:56Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-29T16:10:39Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30469489246, + "name": "NixOS CI/CD", + "run_number": 239, + "run_started_at": "2026-07-29T16:10:39Z", + "status": "completed", + "updated_at": "2026-07-29T16:55:25Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-29T15:47:54Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30467628134, + "name": "NixOS CI/CD", + "run_number": 238, + "run_started_at": "2026-07-29T15:47:54Z", + "status": "completed", + "updated_at": "2026-07-29T15:54:21Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-29T15:47:03Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30467559814, + "name": "NixOS CI/CD", + "run_number": 237, + "run_started_at": "2026-07-29T15:47:03Z", + "status": "completed", + "updated_at": "2026-07-29T15:47:54Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-29T15:43:25Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30467259418, + "name": "NixOS CI/CD", + "run_number": 236, + "run_started_at": "2026-07-29T15:43:25Z", + "status": "completed", + "updated_at": "2026-07-29T16:11:04Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-29T15:24:07Z", + "event": "pull_request", + "head_branch": "nginx-overhaul", + "id": 30465666572, + "name": "NixOS CI/CD", + "run_number": 235, + "run_started_at": "2026-07-29T15:24:07Z", + "status": "completed", + "updated_at": "2026-07-29T15:43:49Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-27T17:13:27Z", + "event": "pull_request", + "head_branch": "overlord-c-package-update", + "id": 30288287063, + "name": "NixOS CI/CD", + "run_number": 234, + "run_started_at": "2026-07-27T17:13:27Z", + "status": "completed", + "updated_at": "2026-07-28T10:37:33Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-27T15:20:55Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30279554921, + "name": "NixOS CI/CD", + "run_number": 233, + "run_started_at": "2026-07-27T15:20:55Z", + "status": "completed", + "updated_at": "2026-07-27T17:57:14Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-26T20:00:43Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30218062762, + "name": "NixOS CI/CD", + "run_number": 232, + "run_started_at": "2026-07-26T20:00:43Z", + "status": "completed", + "updated_at": "2026-07-26T23:11:27Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-26T15:43:29Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30208813247, + "name": "NixOS CI/CD", + "run_number": 231, + "run_started_at": "2026-07-26T15:43:29Z", + "status": "completed", + "updated_at": "2026-07-26T18:36:23Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-26T13:49:16Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30204816758, + "name": "NixOS CI/CD", + "run_number": 230, + "run_started_at": "2026-07-26T13:49:16Z", + "status": "completed", + "updated_at": "2026-07-26T13:56:15Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-26T09:58:59Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30197430777, + "name": "NixOS CI/CD", + "run_number": 229, + "run_started_at": "2026-07-26T09:58:59Z", + "status": "completed", + "updated_at": "2026-07-26T12:33:44Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-25T21:53:42Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30176511054, + "name": "NixOS CI/CD", + "run_number": 228, + "run_started_at": "2026-07-25T21:53:42Z", + "status": "completed", + "updated_at": "2026-07-26T03:33:02Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-25T21:42:38Z", + "event": "pull_request", + "head_branch": "overlord-ii-planar-topology", + "id": 30176159812, + "name": "NixOS CI/CD", + "run_number": 227, + "run_started_at": "2026-07-25T21:42:38Z", + "status": "completed", + "updated_at": "2026-07-25T21:54:07Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-25T21:40:04Z", + "event": "push", + "head_branch": "main", + "id": 30176076903, + "name": "NixOS CI/CD", + "run_number": 226, + "run_started_at": "2026-07-26T01:16:15Z", + "status": "completed", + "updated_at": "2026-07-26T02:41:34Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-25T17:21:18Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30167455387, + "name": "NixOS CI/CD", + "run_number": 225, + "run_started_at": "2026-07-25T17:21:18Z", + "status": "completed", + "updated_at": "2026-07-25T21:11:45Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-25T15:12:11Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30163147986, + "name": "NixOS CI/CD", + "run_number": 224, + "run_started_at": "2026-07-25T15:12:11Z", + "status": "completed", + "updated_at": "2026-07-25T17:21:37Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-24T18:22:04Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30116634265, + "name": "NixOS CI/CD", + "run_number": 223, + "run_started_at": "2026-07-25T07:04:52Z", + "status": "completed", + "updated_at": "2026-07-25T15:12:30Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-24T17:19:40Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30112557995, + "name": "NixOS CI/CD", + "run_number": 222, + "run_started_at": "2026-07-24T17:19:40Z", + "status": "completed", + "updated_at": "2026-07-24T18:22:15Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-24T17:08:08Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30111809105, + "name": "NixOS CI/CD", + "run_number": 221, + "run_started_at": "2026-07-24T17:08:08Z", + "status": "completed", + "updated_at": "2026-07-24T17:13:12Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-24T14:13:59Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30100143637, + "name": "NixOS CI/CD", + "run_number": 220, + "run_started_at": "2026-07-24T14:13:59Z", + "status": "completed", + "updated_at": "2026-07-24T18:22:19Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:17:49Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30037376572, + "name": "NixOS CI/CD", + "run_number": 219, + "run_started_at": "2026-07-23T19:17:49Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:48Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:17:44Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30037371102, + "name": "NixOS CI/CD", + "run_number": 218, + "run_started_at": "2026-07-23T19:17:44Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:25Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:17:40Z", + "event": "push", + "head_branch": "overlord-II", + "id": 30037367940, + "name": "NixOS CI/CD", + "run_number": 217, + "run_started_at": "2026-07-23T19:17:40Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:20Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:05:22Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30036530272, + "name": "NixOS CI/CD", + "run_number": 216, + "run_started_at": "2026-07-23T19:05:22Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:37Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:04:24Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30036460136, + "name": "NixOS CI/CD", + "run_number": 215, + "run_started_at": "2026-07-23T19:04:24Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:33Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:04:21Z", + "event": "push", + "head_branch": "overlord-II", + "id": 30036456061, + "name": "NixOS CI/CD", + "run_number": 214, + "run_started_at": "2026-07-23T19:04:21Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:10Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T19:01:16Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30036236411, + "name": "NixOS CI/CD", + "run_number": 213, + "run_started_at": "2026-07-23T19:01:16Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:16Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T18:58:07Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30036006169, + "name": "NixOS CI/CD", + "run_number": 212, + "run_started_at": "2026-07-23T18:58:07Z", + "status": "completed", + "updated_at": "2026-07-24T17:12:04Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T18:58:04Z", + "event": "push", + "head_branch": "overlord-II", + "id": 30036002962, + "name": "NixOS CI/CD", + "run_number": 211, + "run_started_at": "2026-07-23T18:58:04Z", + "status": "completed", + "updated_at": "2026-07-24T17:11:57Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T15:12:28Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30019451051, + "name": "NixOS CI/CD", + "run_number": 210, + "run_started_at": "2026-07-23T15:12:28Z", + "status": "completed", + "updated_at": "2026-07-23T18:12:46Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T15:12:25Z", + "event": "push", + "head_branch": "overlord-II", + "id": 30019446541, + "name": "NixOS CI/CD", + "run_number": 209, + "run_started_at": "2026-07-23T15:12:25Z", + "status": "completed", + "updated_at": "2026-07-23T18:29:37Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T15:02:52Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30018690823, + "name": "NixOS CI/CD", + "run_number": 208, + "run_started_at": "2026-07-23T15:02:52Z", + "status": "completed", + "updated_at": "2026-07-23T15:14:46Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T12:44:21Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30008201944, + "name": "NixOS CI/CD", + "run_number": 207, + "run_started_at": "2026-07-23T12:44:21Z", + "status": "completed", + "updated_at": "2026-07-23T15:54:26Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T12:44:17Z", + "event": "push", + "head_branch": "overlord-II", + "id": 30008197682, + "name": "NixOS CI/CD", + "run_number": 206, + "run_started_at": "2026-07-23T12:44:17Z", + "status": "completed", + "updated_at": "2026-07-23T12:46:40Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T12:28:04Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30007096334, + "name": "NixOS CI/CD", + "run_number": 205, + "run_started_at": "2026-07-23T12:28:04Z", + "status": "completed", + "updated_at": "2026-07-23T12:41:49Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T11:37:28Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 30003827926, + "name": "NixOS CI/CD", + "run_number": 204, + "run_started_at": "2026-07-23T11:37:28Z", + "status": "completed", + "updated_at": "2026-07-23T12:25:11Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T10:39:00Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 30000099645, + "name": "NixOS CI/CD", + "run_number": 203, + "run_started_at": "2026-07-23T10:39:00Z", + "status": "completed", + "updated_at": "2026-07-23T10:52:53Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-23T10:38:58Z", + "event": "push", + "head_branch": "overlord-II", + "id": 30000097629, + "name": "NixOS CI/CD", + "run_number": 202, + "run_started_at": "2026-07-23T11:37:39Z", + "status": "completed", + "updated_at": "2026-07-23T12:46:43Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T09:52:11Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29997061081, + "name": "NixOS CI/CD", + "run_number": 201, + "run_started_at": "2026-07-23T09:52:11Z", + "status": "completed", + "updated_at": "2026-07-23T10:06:48Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-23T09:52:07Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29997057269, + "name": "NixOS CI/CD", + "run_number": 200, + "run_started_at": "2026-07-23T09:52:07Z", + "status": "completed", + "updated_at": "2026-07-23T10:00:17Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-22T16:07:42Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29936589449, + "name": "NixOS CI/CD", + "run_number": 199, + "run_started_at": "2026-07-22T16:07:42Z", + "status": "completed", + "updated_at": "2026-07-22T18:40:39Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-22T15:22:07Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29933030683, + "name": "NixOS CI/CD", + "run_number": 198, + "run_started_at": "2026-07-22T15:22:07Z", + "status": "completed", + "updated_at": "2026-07-22T18:22:48Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-22T15:22:06Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29933029400, + "name": "NixOS CI/CD", + "run_number": 197, + "run_started_at": "2026-07-22T15:22:06Z", + "status": "completed", + "updated_at": "2026-07-22T18:27:09Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-22T13:47:09Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29925478173, + "name": "NixOS CI/CD", + "run_number": 196, + "run_started_at": "2026-07-22T13:47:09Z", + "status": "completed", + "updated_at": "2026-07-22T16:12:16Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-22T11:44:49Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29916879925, + "name": "NixOS CI/CD", + "run_number": 195, + "run_started_at": "2026-07-22T11:44:49Z", + "status": "completed", + "updated_at": "2026-07-22T16:12:19Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-22T11:32:14Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29916073230, + "name": "NixOS CI/CD", + "run_number": 194, + "run_started_at": "2026-07-22T11:32:14Z", + "status": "completed", + "updated_at": "2026-07-22T15:08:54Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-22T10:49:30Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29913380174, + "name": "NixOS CI/CD", + "run_number": 193, + "run_started_at": "2026-07-22T10:49:30Z", + "status": "completed", + "updated_at": "2026-07-22T12:20:30Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-22T10:22:41Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29911672345, + "name": "NixOS CI/CD", + "run_number": 192, + "run_started_at": "2026-07-22T10:22:41Z", + "status": "completed", + "updated_at": "2026-07-22T12:08:54Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T21:34:21Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29870490686, + "name": "NixOS CI/CD", + "run_number": 191, + "run_started_at": "2026-07-21T21:34:21Z", + "status": "completed", + "updated_at": "2026-07-22T13:27:28Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T21:34:18Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29870488133, + "name": "NixOS CI/CD", + "run_number": 190, + "run_started_at": "2026-07-21T21:34:18Z", + "status": "completed", + "updated_at": "2026-07-22T12:25:16Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T20:22:30Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29865476321, + "name": "NixOS CI/CD", + "run_number": 189, + "run_started_at": "2026-07-21T20:22:30Z", + "status": "completed", + "updated_at": "2026-07-22T13:19:02Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T20:22:27Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29865473568, + "name": "NixOS CI/CD", + "run_number": 188, + "run_started_at": "2026-07-21T20:22:27Z", + "status": "completed", + "updated_at": "2026-07-22T12:24:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T18:53:27Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29859144229, + "name": "NixOS CI/CD", + "run_number": 187, + "run_started_at": "2026-07-21T18:53:27Z", + "status": "completed", + "updated_at": "2026-07-22T05:19:05Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T18:36:20Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29857931561, + "name": "NixOS CI/CD", + "run_number": 186, + "run_started_at": "2026-07-21T18:36:20Z", + "status": "completed", + "updated_at": "2026-07-22T13:16:46Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T18:31:04Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29857547965, + "name": "NixOS CI/CD", + "run_number": 185, + "run_started_at": "2026-07-21T18:31:04Z", + "status": "completed", + "updated_at": "2026-07-22T13:14:37Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T18:23:43Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29857024461, + "name": "NixOS CI/CD", + "run_number": 184, + "run_started_at": "2026-07-21T18:23:43Z", + "status": "completed", + "updated_at": "2026-07-22T13:17:51Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T18:23:41Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29857022296, + "name": "NixOS CI/CD", + "run_number": 183, + "run_started_at": "2026-07-21T18:23:41Z", + "status": "completed", + "updated_at": "2026-07-22T12:20:09Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T18:18:21Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29856643728, + "name": "NixOS CI/CD", + "run_number": 182, + "run_started_at": "2026-07-21T18:18:21Z", + "status": "completed", + "updated_at": "2026-07-22T13:13:33Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T16:31:55Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29849006987, + "name": "NixOS CI/CD", + "run_number": 181, + "run_started_at": "2026-07-21T16:31:55Z", + "status": "completed", + "updated_at": "2026-07-22T12:39:41Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T16:27:58Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29848705228, + "name": "NixOS CI/CD", + "run_number": 180, + "run_started_at": "2026-07-21T16:27:58Z", + "status": "completed", + "updated_at": "2026-07-22T11:38:14Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T16:04:33Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29846947438, + "name": "NixOS CI/CD", + "run_number": 179, + "run_started_at": "2026-07-21T16:04:33Z", + "status": "completed", + "updated_at": "2026-07-22T07:17:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:37:46Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29844859390, + "name": "NixOS CI/CD", + "run_number": 178, + "run_started_at": "2026-07-21T15:37:46Z", + "status": "completed", + "updated_at": "2026-07-22T13:15:42Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:37:42Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29844853633, + "name": "NixOS CI/CD", + "run_number": 177, + "run_started_at": "2026-07-21T15:37:42Z", + "status": "completed", + "updated_at": "2026-07-22T12:19:03Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:36:05Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29844726872, + "name": "NixOS CI/CD", + "run_number": 176, + "run_started_at": "2026-07-21T15:36:05Z", + "status": "completed", + "updated_at": "2026-07-21T16:01:46Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:20:23Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29843497487, + "name": "NixOS CI/CD", + "run_number": 175, + "run_started_at": "2026-07-21T15:20:23Z", + "status": "completed", + "updated_at": "2026-07-22T13:12:30Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:20:19Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29843492935, + "name": "NixOS CI/CD", + "run_number": 174, + "run_started_at": "2026-07-21T15:20:19Z", + "status": "completed", + "updated_at": "2026-07-22T12:10:37Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:10:23Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29842696784, + "name": "NixOS CI/CD", + "run_number": 173, + "run_started_at": "2026-07-21T15:10:23Z", + "status": "completed", + "updated_at": "2026-07-21T15:43:01Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-21T15:09:01Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29842586756, + "name": "NixOS CI/CD", + "run_number": 172, + "run_started_at": "2026-07-21T15:09:01Z", + "status": "completed", + "updated_at": "2026-07-22T11:33:53Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:09:01Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29842585978, + "name": "NixOS CI/CD", + "run_number": 171, + "run_started_at": "2026-07-21T15:09:01Z", + "status": "completed", + "updated_at": "2026-07-22T11:31:18Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:05:48Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29842325673, + "name": "NixOS CI/CD", + "run_number": 170, + "run_started_at": "2026-07-21T15:05:48Z", + "status": "completed", + "updated_at": "2026-07-21T16:02:09Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T15:05:44Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29842320534, + "name": "NixOS CI/CD", + "run_number": 169, + "run_started_at": "2026-07-21T15:05:44Z", + "status": "completed", + "updated_at": "2026-07-21T15:43:43Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T14:59:44Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29841814785, + "name": "NixOS CI/CD", + "run_number": 168, + "run_started_at": "2026-07-21T14:59:44Z", + "status": "completed", + "updated_at": "2026-07-21T15:44:07Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T14:59:42Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29841812482, + "name": "NixOS CI/CD", + "run_number": 167, + "run_started_at": "2026-07-21T14:59:42Z", + "status": "completed", + "updated_at": "2026-07-21T15:43:23Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T14:36:49Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29839928798, + "name": "NixOS CI/CD", + "run_number": 166, + "run_started_at": "2026-07-21T14:36:49Z", + "status": "completed", + "updated_at": "2026-07-21T15:35:29Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T14:19:47Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29838578517, + "name": "NixOS CI/CD", + "run_number": 165, + "run_started_at": "2026-07-21T14:19:47Z", + "status": "completed", + "updated_at": "2026-07-22T12:17:07Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T14:19:43Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29838573454, + "name": "NixOS CI/CD", + "run_number": 164, + "run_started_at": "2026-07-21T14:19:43Z", + "status": "completed", + "updated_at": "2026-07-22T11:29:59Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T13:41:54Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29835623970, + "name": "NixOS CI/CD", + "run_number": 163, + "run_started_at": "2026-07-21T13:41:54Z", + "status": "completed", + "updated_at": "2026-07-22T07:53:45Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T13:41:51Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29835618976, + "name": "NixOS CI/CD", + "run_number": 162, + "run_started_at": "2026-07-21T14:19:06Z", + "status": "completed", + "updated_at": "2026-07-22T11:28:02Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T12:38:24Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29830929430, + "name": "NixOS CI/CD", + "run_number": 161, + "run_started_at": "2026-07-21T12:38:24Z", + "status": "completed", + "updated_at": "2026-07-21T13:15:23Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T12:38:22Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29830927011, + "name": "NixOS CI/CD", + "run_number": 160, + "run_started_at": "2026-07-21T12:38:22Z", + "status": "completed", + "updated_at": "2026-07-21T13:21:57Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T12:07:01Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29828792999, + "name": "NixOS CI/CD", + "run_number": 159, + "run_started_at": "2026-07-21T12:07:01Z", + "status": "completed", + "updated_at": "2026-07-21T13:08:54Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T12:06:58Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29828789098, + "name": "NixOS CI/CD", + "run_number": 158, + "run_started_at": "2026-07-21T12:06:58Z", + "status": "completed", + "updated_at": "2026-07-21T13:00:19Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-21T11:12:13Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29825177769, + "name": "NixOS CI/CD", + "run_number": 157, + "run_started_at": "2026-07-21T11:12:13Z", + "status": "completed", + "updated_at": "2026-07-21T12:10:27Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-21T10:47:36Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29823588487, + "name": "NixOS CI/CD", + "run_number": 156, + "run_started_at": "2026-07-21T10:47:36Z", + "status": "completed", + "updated_at": "2026-07-21T12:08:36Z" + } +] +[ + { + "conclusion": "failure", + "created_at": "2026-07-20T16:56:29Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29761711239, + "name": "NixOS CI/CD", + "run_number": 155, + "run_started_at": "2026-07-20T16:56:29Z", + "status": "completed", + "updated_at": "2026-07-20T22:05:39Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T16:53:31Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29761504840, + "name": "NixOS CI/CD", + "run_number": 154, + "run_started_at": "2026-07-20T16:53:31Z", + "status": "completed", + "updated_at": "2026-07-20T22:00:42Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-20T16:32:52Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29760067734, + "name": "NixOS CI/CD", + "run_number": 153, + "run_started_at": "2026-07-20T16:32:52Z", + "status": "completed", + "updated_at": "2026-07-21T12:08:30Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-20T16:15:01Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29758775043, + "name": "NixOS CI/CD", + "run_number": 152, + "run_started_at": "2026-07-20T16:15:01Z", + "status": "completed", + "updated_at": "2026-07-21T12:08:39Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T16:14:58Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29758771475, + "name": "NixOS CI/CD", + "run_number": 151, + "run_started_at": "2026-07-20T16:14:58Z", + "status": "completed", + "updated_at": "2026-07-21T10:02:50Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T16:09:25Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29758364786, + "name": "NixOS CI/CD", + "run_number": 150, + "run_started_at": "2026-07-20T16:09:25Z", + "status": "completed", + "updated_at": "2026-07-20T21:58:23Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-20T15:57:41Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29757500370, + "name": "NixOS CI/CD", + "run_number": 149, + "run_started_at": "2026-07-20T15:57:41Z", + "status": "completed", + "updated_at": "2026-07-21T10:43:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T15:57:35Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29757493595, + "name": "NixOS CI/CD", + "run_number": 148, + "run_started_at": "2026-07-20T15:57:35Z", + "status": "completed", + "updated_at": "2026-07-21T09:37:36Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T15:57:27Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29757484312, + "name": "NixOS CI/CD", + "run_number": 147, + "run_started_at": "2026-07-20T15:57:27Z", + "status": "completed", + "updated_at": "2026-07-20T21:39:44Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T15:46:06Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29756666269, + "name": "NixOS CI/CD", + "run_number": 146, + "run_started_at": "2026-07-20T15:46:06Z", + "status": "completed", + "updated_at": "2026-07-20T21:20:44Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T15:41:10Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29756289457, + "name": "NixOS CI/CD", + "run_number": 145, + "run_started_at": "2026-07-20T15:41:10Z", + "status": "completed", + "updated_at": "2026-07-20T21:20:24Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T15:33:37Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29755710473, + "name": "NixOS CI/CD", + "run_number": 144, + "run_started_at": "2026-07-20T15:33:37Z", + "status": "completed", + "updated_at": "2026-07-20T20:59:03Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T15:13:04Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29754162320, + "name": "NixOS CI/CD", + "run_number": 143, + "run_started_at": "2026-07-20T15:13:04Z", + "status": "completed", + "updated_at": "2026-07-20T23:52:49Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T13:06:34Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29744833871, + "name": "NixOS CI/CD", + "run_number": 142, + "run_started_at": "2026-07-20T13:06:34Z", + "status": "completed", + "updated_at": "2026-07-20T15:06:50Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T13:00:48Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29744445141, + "name": "NixOS CI/CD", + "run_number": 141, + "run_started_at": "2026-07-20T13:00:48Z", + "status": "completed", + "updated_at": "2026-07-20T14:39:34Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T12:51:10Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29743795554, + "name": "NixOS CI/CD", + "run_number": 140, + "run_started_at": "2026-07-20T12:51:10Z", + "status": "completed", + "updated_at": "2026-07-20T14:28:07Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T12:44:20Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29743351972, + "name": "NixOS CI/CD", + "run_number": 139, + "run_started_at": "2026-07-20T12:44:20Z", + "status": "completed", + "updated_at": "2026-07-20T14:24:16Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-20T12:17:27Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29741653785, + "name": "NixOS CI/CD", + "run_number": 138, + "run_started_at": "2026-07-20T12:17:27Z", + "status": "completed", + "updated_at": "2026-07-20T15:10:42Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-20T12:17:24Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29741650924, + "name": "NixOS CI/CD", + "run_number": 137, + "run_started_at": "2026-07-20T12:17:24Z", + "status": "completed", + "updated_at": "2026-07-20T15:10:21Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T11:17:01Z", + "event": "push", + "head_branch": "overlord-ii-planar-topology", + "id": 29738005966, + "name": "NixOS CI/CD", + "run_number": 136, + "run_started_at": "2026-07-20T11:17:01Z", + "status": "completed", + "updated_at": "2026-07-20T11:18:42Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T11:09:21Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29737540471, + "name": "NixOS CI/CD", + "run_number": 135, + "run_started_at": "2026-07-20T11:09:21Z", + "status": "completed", + "updated_at": "2026-07-20T11:17:55Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-20T11:09:17Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29737536362, + "name": "NixOS CI/CD", + "run_number": 134, + "run_started_at": "2026-07-20T11:09:17Z", + "status": "completed", + "updated_at": "2026-07-20T15:10:16Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T09:07:01Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29730208299, + "name": "NixOS CI/CD", + "run_number": 133, + "run_started_at": "2026-07-20T09:07:01Z", + "status": "completed", + "updated_at": "2026-07-20T11:01:16Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T09:06:57Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29730204704, + "name": "NixOS CI/CD", + "run_number": 132, + "run_started_at": "2026-07-20T09:06:57Z", + "status": "completed", + "updated_at": "2026-07-20T09:14:14Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T08:55:04Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29729499669, + "name": "NixOS CI/CD", + "run_number": 131, + "run_started_at": "2026-07-20T08:55:04Z", + "status": "completed", + "updated_at": "2026-07-20T08:57:03Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-20T08:55:02Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29729496772, + "name": "NixOS CI/CD", + "run_number": 130, + "run_started_at": "2026-07-20T08:55:02Z", + "status": "completed", + "updated_at": "2026-07-20T08:56:59Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T21:33:31Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29704573947, + "name": "NixOS CI/CD", + "run_number": 129, + "run_started_at": "2026-07-19T22:27:28Z", + "status": "completed", + "updated_at": "2026-07-20T02:10:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T21:33:29Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29704572542, + "name": "NixOS CI/CD", + "run_number": 128, + "run_started_at": "2026-07-19T21:33:29Z", + "status": "completed", + "updated_at": "2026-07-19T21:49:34Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T21:19:59Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29704160590, + "name": "NixOS CI/CD", + "run_number": 127, + "run_started_at": "2026-07-19T21:27:43Z", + "status": "completed", + "updated_at": "2026-07-19T21:29:32Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T21:19:57Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29704159487, + "name": "NixOS CI/CD", + "run_number": 126, + "run_started_at": "2026-07-19T21:19:57Z", + "status": "completed", + "updated_at": "2026-07-19T21:24:45Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T21:09:59Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29703864888, + "name": "NixOS CI/CD", + "run_number": 125, + "run_started_at": "2026-07-19T21:09:59Z", + "status": "completed", + "updated_at": "2026-07-19T21:17:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T21:09:57Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29703863940, + "name": "NixOS CI/CD", + "run_number": 124, + "run_started_at": "2026-07-19T21:09:57Z", + "status": "completed", + "updated_at": "2026-07-19T21:11:58Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T19:45:41Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29701226350, + "name": "NixOS CI/CD", + "run_number": 123, + "run_started_at": "2026-07-19T19:45:41Z", + "status": "completed", + "updated_at": "2026-07-19T19:51:18Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T18:12:56Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29698321798, + "name": "NixOS CI/CD", + "run_number": 122, + "run_started_at": "2026-07-19T18:12:56Z", + "status": "completed", + "updated_at": "2026-07-19T19:50:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T18:12:54Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29698320680, + "name": "NixOS CI/CD", + "run_number": 121, + "run_started_at": "2026-07-19T18:12:54Z", + "status": "completed", + "updated_at": "2026-07-19T19:50:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T15:27:05Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29692862987, + "name": "NixOS CI/CD", + "run_number": 120, + "run_started_at": "2026-07-19T15:27:05Z", + "status": "completed", + "updated_at": "2026-07-19T19:50:22Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T15:27:03Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29692861318, + "name": "NixOS CI/CD", + "run_number": 119, + "run_started_at": "2026-07-19T15:27:03Z", + "status": "completed", + "updated_at": "2026-07-19T15:34:43Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T14:50:23Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29691624461, + "name": "NixOS CI/CD", + "run_number": 118, + "run_started_at": "2026-07-19T14:50:23Z", + "status": "completed", + "updated_at": "2026-07-19T15:35:39Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-19T14:50:21Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29691623261, + "name": "NixOS CI/CD", + "run_number": 117, + "run_started_at": "2026-07-19T14:50:21Z", + "status": "completed", + "updated_at": "2026-07-19T15:33:06Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-18T20:27:00Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29659723643, + "name": "NixOS CI/CD", + "run_number": 116, + "run_started_at": "2026-07-18T20:27:00Z", + "status": "completed", + "updated_at": "2026-07-19T15:36:00Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-18T20:26:57Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29659721965, + "name": "NixOS CI/CD", + "run_number": 115, + "run_started_at": "2026-07-18T20:26:57Z", + "status": "completed", + "updated_at": "2026-07-19T14:48:25Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-18T19:10:16Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29657279469, + "name": "NixOS CI/CD", + "run_number": 114, + "run_started_at": "2026-07-18T19:10:16Z", + "status": "completed", + "updated_at": "2026-07-19T14:50:37Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-18T19:10:14Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29657278101, + "name": "NixOS CI/CD", + "run_number": 113, + "run_started_at": "2026-07-18T19:10:14Z", + "status": "completed", + "updated_at": "2026-07-19T14:47:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-18T11:43:54Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29643063903, + "name": "NixOS CI/CD", + "run_number": 112, + "run_started_at": "2026-07-18T11:43:54Z", + "status": "completed", + "updated_at": "2026-07-19T07:21:41Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-18T11:43:51Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29643062888, + "name": "NixOS CI/CD", + "run_number": 111, + "run_started_at": "2026-07-18T11:43:51Z", + "status": "completed", + "updated_at": "2026-07-18T13:28:35Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T18:40:25Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29604686045, + "name": "NixOS CI/CD", + "run_number": 110, + "run_started_at": "2026-07-17T18:40:25Z", + "status": "completed", + "updated_at": "2026-07-18T00:56:55Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T18:40:24Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29604684524, + "name": "NixOS CI/CD", + "run_number": 109, + "run_started_at": "2026-07-17T18:40:24Z", + "status": "completed", + "updated_at": "2026-07-17T21:54:07Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T14:55:02Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29589954761, + "name": "NixOS CI/CD", + "run_number": 108, + "run_started_at": "2026-07-17T14:55:02Z", + "status": "completed", + "updated_at": "2026-07-18T00:55:24Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T14:54:58Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29589950753, + "name": "NixOS CI/CD", + "run_number": 107, + "run_started_at": "2026-07-17T14:54:58Z", + "status": "completed", + "updated_at": "2026-07-17T15:28:56Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T14:52:56Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29589813677, + "name": "NixOS CI/CD", + "run_number": 106, + "run_started_at": "2026-07-17T14:52:56Z", + "status": "completed", + "updated_at": "2026-07-18T00:55:03Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T14:52:52Z", + "event": "push", + "head_branch": "overlord-II", + "id": 29589808861, + "name": "NixOS CI/CD", + "run_number": 105, + "run_started_at": "2026-07-17T14:52:52Z", + "status": "completed", + "updated_at": "2026-07-17T15:24:50Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T14:45:52Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29589325455, + "name": "NixOS CI/CD", + "run_number": 104, + "run_started_at": "2026-07-17T14:45:52Z", + "status": "completed", + "updated_at": "2026-07-18T00:54:43Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T10:52:52Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29574947676, + "name": "NixOS CI/CD", + "run_number": 103, + "run_started_at": "2026-07-17T10:52:52Z", + "status": "completed", + "updated_at": "2026-07-18T00:54:24Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T08:43:50Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29567428463, + "name": "NixOS CI/CD", + "run_number": 102, + "run_started_at": "2026-07-17T08:43:50Z", + "status": "completed", + "updated_at": "2026-07-17T08:50:18Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T00:39:45Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29545388691, + "name": "NixOS CI/CD", + "run_number": 101, + "run_started_at": "2026-07-17T00:39:45Z", + "status": "completed", + "updated_at": "2026-07-17T02:46:34Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T00:28:14Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29544867741, + "name": "NixOS CI/CD", + "run_number": 100, + "run_started_at": "2026-07-17T00:28:14Z", + "status": "completed", + "updated_at": "2026-07-17T00:40:51Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T00:16:44Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29544331951, + "name": "NixOS CI/CD", + "run_number": 99, + "run_started_at": "2026-07-17T00:16:44Z", + "status": "completed", + "updated_at": "2026-07-17T00:28:37Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-17T00:11:43Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29544093011, + "name": "NixOS CI/CD", + "run_number": 98, + "run_started_at": "2026-07-17T00:11:43Z", + "status": "completed", + "updated_at": "2026-07-17T00:28:16Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-16T20:59:05Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29534268620, + "name": "NixOS CI/CD", + "run_number": 97, + "run_started_at": "2026-07-16T20:59:05Z", + "status": "completed", + "updated_at": "2026-07-17T00:27:51Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-15T10:22:17Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29407882287, + "name": "NixOS CI/CD", + "run_number": 96, + "run_started_at": "2026-07-15T10:22:17Z", + "status": "completed", + "updated_at": "2026-07-16T10:22:19Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-15T09:07:39Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29403327961, + "name": "NixOS CI/CD", + "run_number": 95, + "run_started_at": "2026-07-15T09:07:39Z", + "status": "completed", + "updated_at": "2026-07-15T09:08:32Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-14T17:31:23Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29354117185, + "name": "NixOS CI/CD", + "run_number": 94, + "run_started_at": "2026-07-14T17:31:23Z", + "status": "completed", + "updated_at": "2026-07-14T17:32:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-14T17:27:07Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29353815749, + "name": "NixOS CI/CD", + "run_number": 93, + "run_started_at": "2026-07-14T17:27:07Z", + "status": "completed", + "updated_at": "2026-07-14T17:27:59Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-14T17:15:15Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29352994016, + "name": "NixOS CI/CD", + "run_number": 92, + "run_started_at": "2026-07-14T17:15:15Z", + "status": "completed", + "updated_at": "2026-07-14T17:16:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-14T17:00:24Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29351963548, + "name": "NixOS CI/CD", + "run_number": 91, + "run_started_at": "2026-07-14T17:00:24Z", + "status": "completed", + "updated_at": "2026-07-14T17:01:11Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-14T15:04:22Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29343698526, + "name": "NixOS CI/CD", + "run_number": 90, + "run_started_at": "2026-07-14T15:04:22Z", + "status": "completed", + "updated_at": "2026-07-14T15:05:20Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-14T11:39:36Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29329667758, + "name": "NixOS CI/CD", + "run_number": 89, + "run_started_at": "2026-07-14T11:39:36Z", + "status": "completed", + "updated_at": "2026-07-14T11:40:28Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-13T17:30:56Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29270732683, + "name": "NixOS CI/CD", + "run_number": 88, + "run_started_at": "2026-07-13T17:30:56Z", + "status": "completed", + "updated_at": "2026-07-13T17:31:48Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-13T16:35:15Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29267017162, + "name": "NixOS CI/CD", + "run_number": 87, + "run_started_at": "2026-07-13T16:35:15Z", + "status": "completed", + "updated_at": "2026-07-13T16:36:04Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-13T12:30:54Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29250146728, + "name": "NixOS CI/CD", + "run_number": 86, + "run_started_at": "2026-07-13T12:30:54Z", + "status": "completed", + "updated_at": "2026-07-13T12:31:50Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-13T11:00:45Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29244736652, + "name": "NixOS CI/CD", + "run_number": 85, + "run_started_at": "2026-07-13T11:00:45Z", + "status": "completed", + "updated_at": "2026-07-13T11:53:13Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-13T10:01:00Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29241222192, + "name": "NixOS CI/CD", + "run_number": 84, + "run_started_at": "2026-07-13T10:01:00Z", + "status": "completed", + "updated_at": "2026-07-13T10:36:56Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-13T09:43:24Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29240165191, + "name": "NixOS CI/CD", + "run_number": 83, + "run_started_at": "2026-07-13T09:43:24Z", + "status": "completed", + "updated_at": "2026-07-13T09:59:47Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-13T08:47:22Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29236667781, + "name": "NixOS CI/CD", + "run_number": 82, + "run_started_at": "2026-07-13T08:47:22Z", + "status": "completed", + "updated_at": "2026-07-13T08:56:25Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-12T10:25:51Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29189106889, + "name": "NixOS CI/CD", + "run_number": 81, + "run_started_at": "2026-07-12T10:25:51Z", + "status": "completed", + "updated_at": "2026-07-12T10:36:44Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-12T08:04:49Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29185260977, + "name": "NixOS CI/CD", + "run_number": 80, + "run_started_at": "2026-07-12T08:04:49Z", + "status": "completed", + "updated_at": "2026-07-12T08:14:59Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-11T20:28:01Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29167077746, + "name": "NixOS CI/CD", + "run_number": 79, + "run_started_at": "2026-07-11T20:28:01Z", + "status": "completed", + "updated_at": "2026-07-11T20:38:25Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-11T08:39:31Z", + "event": "pull_request", + "head_branch": "overlord-II", + "id": 29146463682, + "name": "NixOS CI/CD", + "run_number": 78, + "run_started_at": "2026-07-11T08:39:31Z", + "status": "completed", + "updated_at": "2026-07-11T08:50:45Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-05T09:19:36Z", + "event": "push", + "head_branch": "main", + "id": 28736034303, + "name": "NixOS CI/CD", + "run_number": 77, + "run_started_at": "2026-07-05T09:19:36Z", + "status": "completed", + "updated_at": "2026-07-05T09:28:05Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-05T08:03:19Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28734180333, + "name": "NixOS CI/CD", + "run_number": 76, + "run_started_at": "2026-07-05T08:03:19Z", + "status": "completed", + "updated_at": "2026-07-05T08:43:10Z" + }, + { + "conclusion": "success", + "created_at": "2026-07-05T07:30:23Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28733404356, + "name": "NixOS CI/CD", + "run_number": 75, + "run_started_at": "2026-07-05T07:30:23Z", + "status": "completed", + "updated_at": "2026-07-05T08:34:25Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T07:24:57Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28733280927, + "name": "NixOS CI/CD", + "run_number": 74, + "run_started_at": "2026-07-05T07:24:57Z", + "status": "completed", + "updated_at": "2026-07-05T07:26:14Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T07:18:34Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28733133275, + "name": "NixOS CI/CD", + "run_number": 73, + "run_started_at": "2026-07-05T07:18:34Z", + "status": "completed", + "updated_at": "2026-07-05T07:20:40Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T07:09:24Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28732922675, + "name": "NixOS CI/CD", + "run_number": 72, + "run_started_at": "2026-07-05T07:09:24Z", + "status": "completed", + "updated_at": "2026-07-05T07:10:17Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T06:43:15Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28732325698, + "name": "NixOS CI/CD", + "run_number": 71, + "run_started_at": "2026-07-05T06:43:15Z", + "status": "completed", + "updated_at": "2026-07-05T06:44:07Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T06:32:22Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28732088369, + "name": "NixOS CI/CD", + "run_number": 70, + "run_started_at": "2026-07-05T06:32:22Z", + "status": "completed", + "updated_at": "2026-07-05T06:33:55Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T05:55:42Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28731272442, + "name": "NixOS CI/CD", + "run_number": 69, + "run_started_at": "2026-07-05T05:55:42Z", + "status": "completed", + "updated_at": "2026-07-05T05:57:05Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-05T05:48:38Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28731123475, + "name": "NixOS CI/CD", + "run_number": 68, + "run_started_at": "2026-07-05T05:48:38Z", + "status": "completed", + "updated_at": "2026-07-05T05:50:11Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-04T04:49:40Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28695376486, + "name": "NixOS CI/CD", + "run_number": 67, + "run_started_at": "2026-07-04T04:49:40Z", + "status": "completed", + "updated_at": "2026-07-04T09:45:38Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-04T03:17:59Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28693295686, + "name": "NixOS CI/CD", + "run_number": 66, + "run_started_at": "2026-07-04T03:17:59Z", + "status": "completed", + "updated_at": "2026-07-04T09:45:28Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-03T21:37:00Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28684405803, + "name": "NixOS CI/CD", + "run_number": 65, + "run_started_at": "2026-07-03T21:37:00Z", + "status": "completed", + "updated_at": "2026-07-04T09:45:19Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-03T20:47:58Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28682748068, + "name": "NixOS CI/CD", + "run_number": 64, + "run_started_at": "2026-07-03T20:47:58Z", + "status": "completed", + "updated_at": "2026-07-03T21:06:54Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-03T08:48:22Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28649443547, + "name": "NixOS CI/CD", + "run_number": 63, + "run_started_at": "2026-07-03T08:48:22Z", + "status": "completed", + "updated_at": "2026-07-03T20:59:38Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-03T04:38:39Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28638779602, + "name": "NixOS CI/CD", + "run_number": 62, + "run_started_at": "2026-07-03T04:38:39Z", + "status": "completed", + "updated_at": "2026-07-03T04:52:47Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-03T04:36:54Z", + "event": "push", + "head_branch": "jb/overlord-I", + "id": 28638722698, + "name": ".github/workflows/ci.yml", + "run_number": 61, + "run_started_at": "2026-07-03T04:36:54Z", + "status": "completed", + "updated_at": "2026-07-03T04:36:54Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-03T04:01:31Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28637515855, + "name": "NixOS CI/CD", + "run_number": 60, + "run_started_at": "2026-07-03T04:01:31Z", + "status": "completed", + "updated_at": "2026-07-03T04:12:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-03T02:14:27Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28633969867, + "name": "NixOS CI/CD", + "run_number": 59, + "run_started_at": "2026-07-03T02:14:27Z", + "status": "completed", + "updated_at": "2026-07-03T02:23:02Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-03T01:03:40Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28631538592, + "name": "NixOS CI/CD", + "run_number": 58, + "run_started_at": "2026-07-03T01:03:40Z", + "status": "completed", + "updated_at": "2026-07-03T01:11:57Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T23:40:40Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28628529401, + "name": "NixOS CI/CD", + "run_number": 57, + "run_started_at": "2026-07-02T23:40:40Z", + "status": "completed", + "updated_at": "2026-07-02T23:49:17Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T23:06:48Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28627205568, + "name": "NixOS CI/CD", + "run_number": 56, + "run_started_at": "2026-07-02T23:06:48Z", + "status": "completed", + "updated_at": "2026-07-02T23:28:13Z" + } +] +[ + { + "conclusion": "failure", + "created_at": "2026-07-02T23:03:16Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28627057874, + "name": "NixOS CI/CD", + "run_number": 55, + "run_started_at": "2026-07-02T23:03:16Z", + "status": "completed", + "updated_at": "2026-07-02T23:16:05Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T22:24:25Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28625406243, + "name": "NixOS CI/CD", + "run_number": 54, + "run_started_at": "2026-07-02T22:24:25Z", + "status": "completed", + "updated_at": "2026-07-02T22:37:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T17:53:59Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28610714573, + "name": "NixOS CI/CD", + "run_number": 53, + "run_started_at": "2026-07-02T17:53:59Z", + "status": "completed", + "updated_at": "2026-07-02T18:06:47Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T02:30:30Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28561183808, + "name": "NixOS CI/CD", + "run_number": 52, + "run_started_at": "2026-07-02T02:30:30Z", + "status": "completed", + "updated_at": "2026-07-02T02:43:30Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T01:43:35Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28559541594, + "name": "NixOS CI/CD", + "run_number": 51, + "run_started_at": "2026-07-02T01:43:35Z", + "status": "completed", + "updated_at": "2026-07-02T01:57:32Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-02T01:21:25Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28558765663, + "name": "NixOS CI/CD", + "run_number": 50, + "run_started_at": "2026-07-02T01:21:25Z", + "status": "completed", + "updated_at": "2026-07-02T01:23:24Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-01T21:40:45Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28549568646, + "name": "NixOS CI/CD", + "run_number": 49, + "run_started_at": "2026-07-01T21:40:45Z", + "status": "completed", + "updated_at": "2026-07-01T21:42:45Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-01T17:32:42Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28536003618, + "name": "NixOS CI/CD", + "run_number": 48, + "run_started_at": "2026-07-01T17:32:42Z", + "status": "completed", + "updated_at": "2026-07-01T17:52:19Z" + }, + { + "conclusion": "cancelled", + "created_at": "2026-07-01T17:19:03Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28535240834, + "name": "NixOS CI/CD", + "run_number": 47, + "run_started_at": "2026-07-01T17:19:03Z", + "status": "completed", + "updated_at": "2026-07-01T17:34:27Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-01T01:19:47Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28486851822, + "name": "NixOS CI/CD", + "run_number": 46, + "run_started_at": "2026-07-01T01:19:47Z", + "status": "completed", + "updated_at": "2026-07-01T03:47:58Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-01T01:08:47Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28486438799, + "name": "NixOS CI/CD", + "run_number": 45, + "run_started_at": "2026-07-01T01:08:47Z", + "status": "completed", + "updated_at": "2026-07-01T01:12:51Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-01T01:05:57Z", + "event": "push", + "head_branch": "jb/overlord-I", + "id": 28486333319, + "name": ".github/workflows/ci.yml", + "run_number": 44, + "run_started_at": "2026-07-01T01:05:57Z", + "status": "completed", + "updated_at": "2026-07-01T01:05:57Z" + }, + { + "conclusion": "failure", + "created_at": "2026-07-01T00:56:08Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28485967872, + "name": "NixOS CI/CD", + "run_number": 43, + "run_started_at": "2026-07-01T00:56:08Z", + "status": "completed", + "updated_at": "2026-07-01T00:57:57Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-30T21:25:02Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28476877645, + "name": "NixOS CI/CD", + "run_number": 42, + "run_started_at": "2026-06-30T21:25:02Z", + "status": "completed", + "updated_at": "2026-06-30T22:02:35Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-30T20:35:18Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28474131151, + "name": "NixOS CI/CD", + "run_number": 41, + "run_started_at": "2026-06-30T20:35:18Z", + "status": "completed", + "updated_at": "2026-06-30T20:56:24Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-30T18:50:00Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28468259157, + "name": "NixOS CI/CD", + "run_number": 40, + "run_started_at": "2026-06-30T18:50:00Z", + "status": "completed", + "updated_at": "2026-06-30T20:06:56Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-30T16:40:09Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28460587112, + "name": "NixOS CI/CD", + "run_number": 39, + "run_started_at": "2026-06-30T16:40:09Z", + "status": "completed", + "updated_at": "2026-06-30T16:42:12Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-26T19:06:00Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28259429087, + "name": "NixOS CI/CD", + "run_number": 38, + "run_started_at": "2026-06-26T19:06:00Z", + "status": "completed", + "updated_at": "2026-06-26T19:08:48Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-26T18:47:12Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28258464592, + "name": "NixOS CI/CD", + "run_number": 37, + "run_started_at": "2026-06-26T18:47:12Z", + "status": "completed", + "updated_at": "2026-06-26T18:50:29Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-26T18:31:53Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28257680828, + "name": "NixOS CI/CD", + "run_number": 36, + "run_started_at": "2026-06-26T18:31:53Z", + "status": "completed", + "updated_at": "2026-06-26T18:33:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T23:33:26Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28064327142, + "name": "NixOS CI/CD", + "run_number": 35, + "run_started_at": "2026-06-23T23:33:26Z", + "status": "completed", + "updated_at": "2026-06-23T23:34:46Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T22:42:00Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28062032918, + "name": "NixOS CI/CD", + "run_number": 34, + "run_started_at": "2026-06-23T22:42:00Z", + "status": "completed", + "updated_at": "2026-06-23T22:43:16Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T21:44:15Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28059169962, + "name": "NixOS CI/CD", + "run_number": 33, + "run_started_at": "2026-06-23T21:44:15Z", + "status": "completed", + "updated_at": "2026-06-23T21:45:31Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T20:14:38Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28054083271, + "name": "NixOS CI/CD", + "run_number": 32, + "run_started_at": "2026-06-23T20:14:38Z", + "status": "completed", + "updated_at": "2026-06-23T20:15:56Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T19:45:14Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28052398450, + "name": "NixOS CI/CD", + "run_number": 31, + "run_started_at": "2026-06-23T19:45:14Z", + "status": "completed", + "updated_at": "2026-06-23T19:46:34Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T19:08:30Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28050310398, + "name": "NixOS CI/CD", + "run_number": 30, + "run_started_at": "2026-06-23T19:08:30Z", + "status": "completed", + "updated_at": "2026-06-23T19:09:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-23T18:32:29Z", + "event": "pull_request", + "head_branch": "jb/overlord-I", + "id": 28048179215, + "name": "NixOS CI/CD", + "run_number": 29, + "run_started_at": "2026-06-23T18:32:29Z", + "status": "completed", + "updated_at": "2026-06-23T18:34:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-14T23:02:28Z", + "event": "push", + "head_branch": "main", + "id": 27514861794, + "name": "NixOS CI/CD", + "run_number": 28, + "run_started_at": "2026-06-14T23:02:28Z", + "status": "completed", + "updated_at": "2026-06-14T23:06:38Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-14T16:58:00Z", + "event": "push", + "head_branch": "main", + "id": 27505802681, + "name": "NixOS CI/CD", + "run_number": 27, + "run_started_at": "2026-06-14T16:58:00Z", + "status": "completed", + "updated_at": "2026-06-14T17:02:22Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-14T15:51:51Z", + "event": "push", + "head_branch": "main", + "id": 27504083521, + "name": "NixOS CI/CD", + "run_number": 26, + "run_started_at": "2026-06-14T15:51:51Z", + "status": "completed", + "updated_at": "2026-06-14T15:55:43Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-13T00:32:37Z", + "event": "push", + "head_branch": "main", + "id": 27450994264, + "name": "NixOS CI/CD", + "run_number": 25, + "run_started_at": "2026-06-13T00:32:37Z", + "status": "completed", + "updated_at": "2026-06-13T00:36:22Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-11T13:32:46Z", + "event": "push", + "head_branch": "main", + "id": 27350498930, + "name": "NixOS CI/CD", + "run_number": 24, + "run_started_at": "2026-06-11T13:32:46Z", + "status": "completed", + "updated_at": "2026-06-11T13:36:22Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-07T16:52:13Z", + "event": "push", + "head_branch": "main", + "id": 27098801476, + "name": "NixOS CI/CD", + "run_number": 23, + "run_started_at": "2026-06-07T16:52:13Z", + "status": "completed", + "updated_at": "2026-06-07T16:56:11Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-07T02:57:00Z", + "event": "push", + "head_branch": "main", + "id": 27080910825, + "name": "NixOS CI/CD", + "run_number": 22, + "run_started_at": "2026-06-07T02:57:00Z", + "status": "completed", + "updated_at": "2026-06-07T03:01:35Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-06T22:50:33Z", + "event": "push", + "head_branch": "main", + "id": 27076095012, + "name": "NixOS CI/CD", + "run_number": 21, + "run_started_at": "2026-06-06T22:50:33Z", + "status": "completed", + "updated_at": "2026-06-06T22:54:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-06T22:47:43Z", + "event": "push", + "head_branch": "main", + "id": 27076037233, + "name": "NixOS CI/CD", + "run_number": 20, + "run_started_at": "2026-06-06T22:47:43Z", + "status": "completed", + "updated_at": "2026-06-06T22:49:25Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-06T20:04:53Z", + "event": "push", + "head_branch": "main", + "id": 27072523757, + "name": "NixOS CI/CD", + "run_number": 19, + "run_started_at": "2026-06-06T20:04:53Z", + "status": "completed", + "updated_at": "2026-06-06T20:06:45Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-06T17:17:26Z", + "event": "push", + "head_branch": "main", + "id": 27068801183, + "name": "NixOS CI/CD", + "run_number": 18, + "run_started_at": "2026-06-06T17:17:26Z", + "status": "completed", + "updated_at": "2026-06-06T17:19:17Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-04T18:52:59Z", + "event": "push", + "head_branch": "main", + "id": 26972715346, + "name": "NixOS CI/CD", + "run_number": 17, + "run_started_at": "2026-06-04T18:52:59Z", + "status": "completed", + "updated_at": "2026-06-04T18:56:44Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-04T12:02:41Z", + "event": "push", + "head_branch": "main", + "id": 26950484211, + "name": "NixOS CI/CD", + "run_number": 16, + "run_started_at": "2026-06-04T12:02:41Z", + "status": "completed", + "updated_at": "2026-06-04T12:04:46Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-04T11:39:04Z", + "event": "push", + "head_branch": "main", + "id": 26949398982, + "name": "NixOS CI/CD", + "run_number": 15, + "run_started_at": "2026-06-04T11:39:04Z", + "status": "completed", + "updated_at": "2026-06-04T11:40:49Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-04T10:20:23Z", + "event": "push", + "head_branch": "main", + "id": 26945790995, + "name": "NixOS CI/CD", + "run_number": 14, + "run_started_at": "2026-06-04T10:20:23Z", + "status": "completed", + "updated_at": "2026-06-04T10:22:13Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-01T20:07:42Z", + "event": "push", + "head_branch": "main", + "id": 26779011023, + "name": "NixOS CI/CD", + "run_number": 13, + "run_started_at": "2026-06-01T20:07:42Z", + "status": "completed", + "updated_at": "2026-06-01T20:09:42Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-01T18:24:25Z", + "event": "push", + "head_branch": "main", + "id": 26773723896, + "name": "NixOS CI/CD", + "run_number": 12, + "run_started_at": "2026-06-01T18:24:25Z", + "status": "completed", + "updated_at": "2026-06-01T18:26:16Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-01T15:02:50Z", + "event": "push", + "head_branch": "main", + "id": 26763214014, + "name": "NixOS CI/CD", + "run_number": 11, + "run_started_at": "2026-06-01T15:02:50Z", + "status": "completed", + "updated_at": "2026-06-01T15:07:52Z" + }, + { + "conclusion": "failure", + "created_at": "2026-06-01T12:33:24Z", + "event": "push", + "head_branch": "main", + "id": 26755132820, + "name": "NixOS CI/CD", + "run_number": 10, + "run_started_at": "2026-06-01T12:33:24Z", + "status": "completed", + "updated_at": "2026-06-01T12:38:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-05-16T23:49:53Z", + "event": "push", + "head_branch": "main", + "id": 25976174180, + "name": "NixOS CI/CD", + "run_number": 9, + "run_started_at": "2026-05-16T23:49:53Z", + "status": "completed", + "updated_at": "2026-05-16T23:51:43Z" + }, + { + "conclusion": "failure", + "created_at": "2026-05-03T17:57:42Z", + "event": "push", + "head_branch": "main", + "id": 25286523786, + "name": "NixOS CI/CD", + "run_number": 8, + "run_started_at": "2026-05-03T17:57:42Z", + "status": "completed", + "updated_at": "2026-05-03T18:02:14Z" + }, + { + "conclusion": "failure", + "created_at": "2026-05-03T17:39:32Z", + "event": "push", + "head_branch": "main", + "id": 25286121182, + "name": "NixOS CI/CD", + "run_number": 7, + "run_started_at": "2026-05-03T17:39:32Z", + "status": "completed", + "updated_at": "2026-05-03T17:44:08Z" + }, + { + "conclusion": "failure", + "created_at": "2026-05-03T17:24:30Z", + "event": "push", + "head_branch": "main", + "id": 25285786773, + "name": "NixOS CI/CD", + "run_number": 6, + "run_started_at": "2026-05-03T17:24:30Z", + "status": "completed", + "updated_at": "2026-05-03T17:26:12Z" + }, + { + "conclusion": "failure", + "created_at": "2026-04-22T07:45:36Z", + "event": "push", + "head_branch": "main", + "id": 24766628990, + "name": "NixOS CI/CD", + "run_number": 5, + "run_started_at": "2026-04-22T07:45:36Z", + "status": "completed", + "updated_at": "2026-04-22T07:47:14Z" + }, + { + "conclusion": "failure", + "created_at": "2026-04-22T07:45:24Z", + "event": "push", + "head_branch": "jb/ai/overlord-8", + "id": 24766621702, + "name": "NixOS CI/CD", + "run_number": 4, + "run_started_at": "2026-04-22T07:45:24Z", + "status": "completed", + "updated_at": "2026-04-22T07:46:59Z" + }, + { + "conclusion": "failure", + "created_at": "2026-04-21T14:06:06Z", + "event": "push", + "head_branch": "jb/ai/overlord-8", + "id": 24726948932, + "name": "NixOS CI/CD", + "run_number": 3, + "run_started_at": "2026-04-21T14:06:06Z", + "status": "completed", + "updated_at": "2026-04-21T14:07:50Z" + }, + { + "conclusion": "failure", + "created_at": "2026-04-21T13:50:23Z", + "event": "push", + "head_branch": "jb/ai/overlord-8", + "id": 24726150933, + "name": "NixOS CI/CD", + "run_number": 2, + "run_started_at": "2026-04-21T13:50:23Z", + "status": "completed", + "updated_at": "2026-04-21T13:52:00Z" + }, + { + "conclusion": "failure", + "created_at": "2026-04-15T07:06:31Z", + "event": "push", + "head_branch": "jb/ai/overlord-8", + "id": 24441204587, + "name": "NixOS CI/CD", + "run_number": 1, + "run_started_at": "2026-04-15T07:06:31Z", + "status": "completed", + "updated_at": "2026-04-15T07:10:38Z" + } +] diff --git a/documentation/ci-build-metrics/successful-run-jobs.json b/documentation/ci-build-metrics/successful-run-jobs.json new file mode 100644 index 00000000..d5f6e02e --- /dev/null +++ b/documentation/ci-build-metrics/successful-run-jobs.json @@ -0,0 +1,31097 @@ +[ + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91765093746", + "completed_at": "2026-08-03T17:40:12Z", + "conclusion": "success", + "created_at": "2026-08-03T17:32:03Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91765093746", + "id": 91765093746, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVXaA1cg", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T17:32:05Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:32:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:32:08Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:32:10Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:19Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-08-03T17:32:12Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:37:37Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-08-03T17:32:19Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:40:01Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-08-03T17:37:37Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:40:08Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-08-03T17:40:01Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:40:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-08-03T17:40:08Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:40:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-08-03T17:40:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91765093746", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91765093831", + "completed_at": "2026-08-03T17:33:01Z", + "conclusion": "success", + "created_at": "2026-08-03T17:32:03Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91765093831", + "id": 91765093831, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVXaA1xw", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000357, + "runner_name": "GitHub Actions 1000000357", + "started_at": "2026-08-03T17:32:05Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:32:08Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:32:06Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:32:08Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:21Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-08-03T17:32:11Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:49Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-08-03T17:32:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:57Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-08-03T17:32:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:57Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-08-03T17:32:57Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:57Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-08-03T17:32:57Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:58Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-08-03T17:32:57Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-08-03T17:32:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:32:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-08-03T17:32:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91765093831", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087828", + "completed_at": "2026-08-03T17:41:54Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087828", + "id": 91767087828, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6i1A", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T17:40:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:40:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:40:17Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:40:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:40:19Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:41:49Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T17:40:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:41:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T17:41:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:41:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T17:41:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087828", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087866", + "completed_at": "2026-08-03T20:08:59Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087866", + "id": 91767087866, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6i-g", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T20:06:52Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T20:06:57Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T20:06:55Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:06:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T20:06:57Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:08:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T20:06:59Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:08:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T20:08:55Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:08:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T20:08:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087866", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087876", + "completed_at": "2026-08-03T17:43:43Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087876", + "id": 91767087876, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jBA", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T17:41:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:42:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:41:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:42:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:42:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:43:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T17:42:02Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:43:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T17:43:39Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:43:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T17:43:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087876", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087886", + "completed_at": "2026-08-03T18:01:59Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087886", + "id": 91767087886, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jDg", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T17:59:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:59:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:59:36Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:59:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:59:38Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:01:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T17:59:40Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:01:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T18:01:55Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:01:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T18:01:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087886", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087907", + "completed_at": "2026-08-03T17:42:50Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087907", + "id": 91767087907, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jIw", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T17:40:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:40:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:40:17Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:40:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:40:19Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:42:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T17:40:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:42:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T17:42:45Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:42:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T17:42:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087907", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087989", + "completed_at": "2026-08-03T17:59:31Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087989", + "id": 91767087989, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jdQ", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T17:43:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:43:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:43:47Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:43:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:43:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:59:27Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T17:43:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:59:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T17:59:27Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:59:28Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T17:59:28Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087989", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767087997", + "completed_at": "2026-08-03T18:11:25Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767087997", + "id": 91767087997, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jfQ", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T17:42:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T17:42:56Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T17:42:54Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T17:42:58Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T17:42:56Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:11:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T17:42:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:11:22Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T18:11:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:11:22Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T18:11:22Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767087997", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088030", + "completed_at": "2026-08-03T20:26:32Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088030", + "id": 91767088030, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jng", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T20:03:28Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T20:03:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T20:03:31Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:03:35Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T20:03:33Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:26:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T20:03:35Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:26:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T20:26:28Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:26:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T20:26:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088030", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088041", + "completed_at": "2026-08-03T20:03:26Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088041", + "id": 91767088041, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6jqQ", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T19:33:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T19:33:56Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T19:33:54Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:33:58Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T19:33:56Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:03:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T19:33:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:03:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T20:03:22Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:03:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T20:03:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088041", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088092", + "completed_at": "2026-08-03T18:51:32Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088092", + "id": 91767088092, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6j3A", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T18:11:27Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T18:11:31Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T18:11:29Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:11:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T18:11:31Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:51:27Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T18:11:34Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:51:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T18:51:27Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:51:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T18:51:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088092", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088096", + "completed_at": "2026-08-03T20:06:51Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088096", + "id": 91767088096, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6j4A", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T19:36:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T19:36:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T19:36:22Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:36:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T19:36:24Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:06:46Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T19:36:26Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:06:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T20:06:46Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T20:06:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T20:06:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088096", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088110", + "completed_at": "2026-08-03T18:57:36Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088110", + "id": 91767088110, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6j7g", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T18:31:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T18:31:47Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T18:31:45Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:31:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T18:31:47Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:57:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T18:31:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:57:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T18:57:32Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:57:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T18:57:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088110", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088112", + "completed_at": "2026-08-03T18:31:40Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088112", + "id": 91767088112, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6j8A", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T18:02:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T18:02:06Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T18:02:04Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:02:08Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T18:02:06Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:31:36Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T18:02:08Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:31:37Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T18:31:36Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:31:37Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T18:31:37Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088112", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088154", + "completed_at": "2026-08-03T19:33:49Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088154", + "id": 91767088154, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6kGg", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T18:51:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T18:51:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T18:51:36Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:51:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T18:51:38Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:33:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T18:51:40Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:33:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T19:33:45Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:33:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T19:33:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088154", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91767088187", + "completed_at": "2026-08-03T19:36:17Z", + "conclusion": "success", + "created_at": "2026-08-03T17:40:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91767088187", + "id": 91767088187, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVXb6kOw", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T18:57:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T18:57:43Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T18:57:41Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T18:57:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T18:57:43Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:36:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T18:57:45Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:36:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T19:36:13Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T19:36:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T19:36:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91767088187", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91808111621", + "completed_at": "2026-08-03T20:26:32Z", + "conclusion": "skipped", + "created_at": "2026-08-03T20:26:33Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8bb790ee6e4f0182e8aa8bbf472065244129c2a9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30837150881/job/91808111621", + "id": 91808111621, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVYDCcBQ", + "run_attempt": 1, + "run_id": 30837150881, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30837150881", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-08-03T20:26:33Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91808111621", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91557900032", + "completed_at": "2026-08-02T22:50:37Z", + "conclusion": "success", + "created_at": "2026-08-02T22:49:44Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91557900032", + "id": 91557900032, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVUUavAA", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000354, + "runner_name": "GitHub Actions 1000000354", + "started_at": "2026-08-02T22:49:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T22:49:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T22:49:48Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:49:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T22:49:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:00Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-08-02T22:49:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:26Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-08-02T22:50:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:33Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-08-02T22:50:26Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:33Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-08-02T22:50:33Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:33Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-08-02T22:50:33Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:34Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-08-02T22:50:33Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:34Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-08-02T22:50:34Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:50:34Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-08-02T22:50:34Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91557900032", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91557900056", + "completed_at": "2026-08-02T22:57:15Z", + "conclusion": "success", + "created_at": "2026-08-02T22:49:44Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91557900056", + "id": 91557900056, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVUUavGA", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-02T22:49:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T22:49:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T22:49:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:49:53Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T22:49:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:49:59Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-08-02T22:49:53Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:54:51Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-08-02T22:49:59Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:57:05Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-08-02T22:54:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:57:11Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-08-02T22:57:05Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:57:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-08-02T22:57:11Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:57:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-08-02T22:57:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91557900056", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594475", + "completed_at": "2026-08-02T22:59:04Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594475", + "id": 91558594475, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFHqw", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-02T22:57:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T22:57:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T22:57:20Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:57:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T22:57:22Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:59:00Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T22:57:24Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:59:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T22:59:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:59:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T22:59:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594475", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594484", + "completed_at": "2026-08-03T01:21:20Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594484", + "id": 91558594484, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFHtA", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T01:19:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T01:19:21Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T01:19:19Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:19:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T01:19:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:21:16Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T01:19:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:21:17Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T01:21:16Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:21:17Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T01:21:17Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594484", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594486", + "completed_at": "2026-08-02T22:58:49Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594486", + "id": 91558594486, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFHtg", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-02T22:57:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T22:57:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T22:57:20Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:57:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T22:57:22Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:58:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T22:57:24Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:58:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T22:58:45Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:58:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T22:58:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594486", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594488", + "completed_at": "2026-08-02T23:36:42Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594488", + "id": 91558594488, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFHuA", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-02T23:34:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T23:34:30Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T23:34:29Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:34:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T23:34:31Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:36:37Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T23:34:33Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:36:38Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T23:36:37Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:36:38Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T23:36:38Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594488", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594489", + "completed_at": "2026-08-02T23:01:30Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594489", + "id": 91558594489, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFHuQ", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-02T22:59:05Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T22:59:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T22:59:08Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:59:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T22:59:10Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:01:26Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T22:59:12Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:01:27Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T23:01:26Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:01:27Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T23:01:27Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594489", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594519", + "completed_at": "2026-08-02T23:34:25Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594519", + "id": 91558594519, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH1w", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-02T22:58:50Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T22:58:55Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T22:58:53Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T22:58:58Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T22:58:55Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:34:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T22:58:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:34:22Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T23:34:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:34:22Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T23:34:22Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594519", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594534", + "completed_at": "2026-08-02T23:49:11Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594534", + "id": 91558594534, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH5g", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-02T23:36:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T23:36:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T23:36:46Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:36:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T23:36:48Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:49:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T23:36:50Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:49:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T23:49:07Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:49:08Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T23:49:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594534", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594537", + "completed_at": "2026-08-03T00:35:21Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594537", + "id": 91558594537, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH6Q", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T00:24:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T00:24:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T00:24:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:24:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T00:24:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:35:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T00:24:25Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:35:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T00:35:17Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:35:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T00:35:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594537", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594540", + "completed_at": "2026-08-03T00:24:16Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594540", + "id": 91558594540, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH7A", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-02T23:49:13Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T23:49:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T23:49:16Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:49:20Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T23:49:17Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:24:12Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T23:49:20Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:24:13Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T00:24:12Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:24:13Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T00:24:13Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594540", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594542", + "completed_at": "2026-08-03T00:07:00Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594542", + "id": 91558594542, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH7g", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-02T23:42:09Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T23:42:13Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T23:42:12Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:42:15Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T23:42:13Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:06:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T23:42:15Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:06:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T00:06:56Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:06:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T00:06:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594542", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594543", + "completed_at": "2026-08-02T23:42:07Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594543", + "id": 91558594543, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH7w", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-02T23:01:32Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-02T23:01:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-02T23:01:34Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:01:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-02T23:01:36Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:42:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-02T23:01:38Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:42:04Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-02T23:42:03Z", + "status": "completed" + }, + { + "completed_at": "2026-08-02T23:42:04Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-02T23:42:04Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594543", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594546", + "completed_at": "2026-08-03T00:55:24Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594546", + "id": 91558594546, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH8g", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T00:27:07Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T00:27:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T00:27:10Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:27:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T00:27:12Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:55:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T00:27:14Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:55:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T00:55:20Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:55:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T00:55:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594546", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594549", + "completed_at": "2026-08-03T01:19:14Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594549", + "id": 91558594549, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH9Q", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-03T00:35:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T00:35:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T00:35:25Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:35:29Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T00:35:27Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:19:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T00:35:29Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:19:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T01:19:10Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:19:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T01:19:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594549", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594551", + "completed_at": "2026-08-03T01:30:02Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594551", + "id": 91558594551, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH9w", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T00:55:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T00:55:30Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T00:55:29Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:55:32Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T00:55:30Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:29:58Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T00:55:32Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:29:59Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T01:29:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T01:29:59Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T01:29:59Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594551", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91558594556", + "completed_at": "2026-08-03T00:27:06Z", + "conclusion": "success", + "created_at": "2026-08-02T22:57:16Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91558594556", + "id": 91558594556, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVUVFH_A", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-03T00:07:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-03T00:07:07Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-03T00:07:05Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:07:09Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-03T00:07:07Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:27:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-03T00:07:09Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:27:03Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-03T00:27:02Z", + "status": "completed" + }, + { + "completed_at": "2026-08-03T00:27:03Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-03T00:27:03Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91558594556", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91574283568", + "completed_at": "2026-08-03T01:30:03Z", + "conclusion": "skipped", + "created_at": "2026-08-03T01:30:03Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "2e87494d59c2312602a6c74fd83543177ad3aabe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30770953961/job/91574283568", + "id": 91574283568, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVUkCtMA", + "run_attempt": 1, + "run_id": 30770953961, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30770953961", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-08-03T01:30:03Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91574283568", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084403", + "completed_at": "2026-08-01T15:31:11Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084403", + "id": 91409084403, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfv8w", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": null, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000352, + "runner_name": "GitHub Actions 1000000352", + "started_at": "2026-08-01T15:30:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:30:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:30:19Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:30:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:30:20Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:30:33Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-08-01T15:30:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:30:58Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-08-01T15:30:33Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:31:06Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-08-01T15:30:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:31:06Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-08-01T15:31:06Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:31:06Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-08-01T15:31:06Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:31:07Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-08-01T15:31:06Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:31:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-08-01T15:31:07Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:31:08Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-08-01T15:31:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084403", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084556", + "completed_at": "2026-08-01T17:51:45Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084556", + "id": 91409084556, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfwjA", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T17:49:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T17:49:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T17:49:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:49:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T17:49:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:51:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T17:49:28Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:51:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T17:51:41Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:51:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T17:51:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084556", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084590", + "completed_at": "2026-08-01T20:06:09Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084590", + "id": 91409084590, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfwrg", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T19:33:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T19:34:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T19:33:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T19:34:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T19:34:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T20:06:05Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T19:34:03Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T20:06:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T20:06:05Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T20:06:06Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T20:06:06Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084590", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084594", + "completed_at": "2026-08-01T20:00:45Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084594", + "id": 91409084594, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfwsg", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T19:33:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T19:34:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T19:33:57Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T19:34:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T19:34:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T20:00:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T19:34:02Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T20:00:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T20:00:41Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T20:00:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T20:00:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084594", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084606", + "completed_at": "2026-08-01T15:38:46Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084606", + "id": 91409084606, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfwvg", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T15:37:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:37:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:37:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:37:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:37:25Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T15:37:27Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T15:38:43Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T15:38:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084606", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084609", + "completed_at": "2026-08-01T15:38:59Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084609", + "id": 91409084609, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfwwQ", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T15:37:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:37:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:37:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:37:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:37:25Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T15:37:27Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T15:38:55Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T15:38:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084609", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084612", + "completed_at": "2026-08-01T16:12:10Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084612", + "id": 91409084612, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfwxA", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T16:09:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T16:10:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T16:09:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:10:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T16:10:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:12:06Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T16:10:02Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:12:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T16:12:06Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:12:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T16:12:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084612", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084644", + "completed_at": "2026-08-01T17:53:43Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084644", + "id": 91409084644, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfw5A", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T17:51:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T17:51:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T17:51:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:51:53Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T17:51:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:53:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T17:51:53Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:53:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T17:53:39Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:53:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T17:53:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084644", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084677", + "completed_at": "2026-08-01T16:45:56Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084677", + "id": 91409084677, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxBQ", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T16:12:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T16:12:16Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T16:12:14Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:12:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T16:12:16Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:45:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T16:12:18Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:45:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T16:45:52Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:45:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T16:45:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084677", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084715", + "completed_at": "2026-08-01T17:18:56Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084715", + "id": 91409084715, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxKw", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T16:48:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T16:48:29Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T16:48:27Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:48:31Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T16:48:29Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:18:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T16:48:31Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:18:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T17:18:52Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:18:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T17:18:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084715", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084735", + "completed_at": "2026-08-01T16:15:52Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084735", + "id": 91409084735, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxPw", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T15:54:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:54:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:54:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:54:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:54:53Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:15:48Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T15:54:55Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:15:49Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T16:15:48Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:15:49Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T16:15:49Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084735", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084740", + "completed_at": "2026-08-01T15:54:47Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084740", + "id": 91409084740, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxRA", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T15:39:00Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:39:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:39:03Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:39:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:39:05Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:54:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T15:39:07Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:54:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T15:54:43Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:54:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T15:54:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084740", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084754", + "completed_at": "2026-08-01T18:01:36Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084754", + "id": 91409084754, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxUg", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T17:49:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T17:49:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T17:49:21Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:49:29Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T17:49:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T18:01:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T17:49:29Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T18:01:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T18:01:32Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T18:01:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T18:01:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084754", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084776", + "completed_at": "2026-08-01T16:09:54Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084776", + "id": 91409084776, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxaA", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T15:38:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:38:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:38:51Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:38:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:38:52Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:09:49Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T15:38:54Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:09:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T16:09:49Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:09:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T16:09:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084776", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084831", + "completed_at": "2026-08-01T17:44:47Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084831", + "id": 91409084831, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfxnw", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T16:45:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T16:46:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T16:46:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:46:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T16:46:02Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:44:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T16:46:04Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:44:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T17:44:43Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T17:44:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T17:44:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084831", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409084997", + "completed_at": "2026-08-01T16:48:23Z", + "conclusion": "success", + "created_at": "2026-08-01T19:33:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409084997", + "id": 91409084997, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVSGfyRQ", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-08-01T16:15:54Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T16:15:58Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T16:15:56Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:16:00Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T16:15:58Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:48:19Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-08-01T16:16:00Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:48:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-08-01T16:48:19Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T16:48:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-08-01T16:48:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409084997", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91409098985", + "completed_at": "2026-08-01T15:37:18Z", + "conclusion": "success", + "created_at": "2026-08-01T19:34:03Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91409098985", + "id": 91409098985, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVSGgo6Q", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-08-01T15:30:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-08-01T15:30:15Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-08-01T15:30:13Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:30:17Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-08-01T15:30:15Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:30:23Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-08-01T15:30:17Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:35:04Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-08-01T15:30:23Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:37:08Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-08-01T15:35:04Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:37:14Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-08-01T15:37:08Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:37:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-08-01T15:37:14Z", + "status": "completed" + }, + { + "completed_at": "2026-08-01T15:37:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-08-01T15:37:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91409098985", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91412144488", + "completed_at": "2026-08-01T20:06:10Z", + "conclusion": "skipped", + "created_at": "2026-08-01T20:06:10Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "f95a860f3d158319c9546a574acd4de4395a99d0", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30706049306/job/91412144488", + "id": 91412144488, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVSJahaA", + "run_attempt": 2, + "run_id": 30706049306, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30706049306", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-08-01T20:06:10Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91412144488", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91187999054", + "completed_at": "2026-07-31T15:01:57Z", + "conclusion": "success", + "created_at": "2026-07-31T14:49:21Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91187999054", + "id": 91187999054, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVOzpxTg", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T14:49:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T14:49:28Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T14:49:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T14:49:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:38Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-31T14:49:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:58:27Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-31T14:49:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:44Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-31T14:58:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:50Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-31T15:01:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-31T15:01:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-31T15:01:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91187999054", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91187999168", + "completed_at": "2026-07-31T14:50:23Z", + "conclusion": "success", + "created_at": "2026-07-31T14:49:21Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91187999168", + "id": 91187999168, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVOzpxwA", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000351, + "runner_name": "GitHub Actions 1000000351", + "started_at": "2026-07-31T14:49:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T14:49:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T14:49:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T14:49:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:42Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-31T14:49:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:12Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-31T14:49:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:19Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-31T14:50:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:19Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-31T14:50:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:19Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-31T14:50:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:20Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-31T14:50:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-31T14:50:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:50:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-31T14:50:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91187999168", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084360", + "completed_at": "2026-07-31T15:04:43Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:57Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084360", + "id": 91191084360, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mFSA", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T15:02:07Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T15:02:14Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T15:02:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:02:16Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T15:02:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:04:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T15:02:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:04:39Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T15:04:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:04:39Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T15:04:39Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084360", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084414", + "completed_at": "2026-07-31T16:40:26Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084414", + "id": 91191084414, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mFfg", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T16:39:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:39:45Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:39:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:39:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:39:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:40:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:39:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:40:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:40:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:40:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:40:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084414", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084440", + "completed_at": "2026-07-31T16:21:48Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084440", + "id": 91191084440, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mFmA", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T16:19:39Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:19:43Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:19:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:19:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:19:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:21:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:19:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:21:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:21:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:21:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:21:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084440", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084449", + "completed_at": "2026-07-31T16:42:01Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084449", + "id": 91191084449, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mFoQ", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T16:40:28Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:40:32Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:40:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:40:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:40:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:41:57Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:40:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:41:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:41:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:41:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:41:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084449", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084514", + "completed_at": "2026-07-31T15:29:08Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084514", + "id": 91191084514, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mF4g", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T15:02:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T15:02:09Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T15:02:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:02:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T15:02:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:29:04Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T15:02:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:29:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T15:29:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:29:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T15:29:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084514", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084516", + "completed_at": "2026-07-31T18:31:56Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084516", + "id": 91191084516, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mF5A", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T18:30:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:30:06Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:30:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:30:08Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:30:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:31:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:30:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:31:52Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:31:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:31:52Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:31:52Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084516", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084540", + "completed_at": "2026-07-31T15:41:12Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084540", + "id": 91191084540, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mF_A", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T15:04:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T15:04:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T15:04:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:04:56Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T15:04:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:41:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T15:04:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:41:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T15:41:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:41:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T15:41:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084540", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084551", + "completed_at": "2026-07-31T16:58:17Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084551", + "id": 91191084551, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGBw", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T16:42:03Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:42:08Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:42:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:42:10Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:42:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:58:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:42:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:58:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:58:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:58:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:58:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084551", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084583", + "completed_at": "2026-07-31T18:24:57Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084583", + "id": 91191084583, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGJw", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T17:47:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T17:47:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T17:47:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:47:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T17:47:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:24:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T17:47:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:24:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:24:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:24:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:24:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084583", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084591", + "completed_at": "2026-07-31T16:47:57Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084591", + "id": 91191084591, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGLw", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T16:37:07Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:37:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:37:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:37:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:37:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:47:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:37:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:47:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:47:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:47:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:47:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084591", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084605", + "completed_at": "2026-07-31T16:19:36Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084605", + "id": 91191084605, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGPQ", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T15:41:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T15:41:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T15:41:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:41:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T15:41:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:19:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T15:41:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:19:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:19:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:19:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:19:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084605", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084610", + "completed_at": "2026-07-31T18:10:14Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084610", + "id": 91191084610, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGQg", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T17:19:45Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T17:19:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T17:19:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:19:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T17:19:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:10:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T17:19:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:10:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:10:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:10:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:10:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084610", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084659", + "completed_at": "2026-07-31T16:16:46Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084659", + "id": 91191084659, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGcw", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T15:31:27Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T15:31:32Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T15:31:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:31:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T15:31:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:16:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T15:31:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:16:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:16:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:16:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:16:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084659", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084696", + "completed_at": "2026-07-31T17:19:43Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084696", + "id": 91191084696, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGmA", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T16:47:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:48:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:48:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:48:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:48:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:19:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:48:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:19:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T17:19:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:19:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T17:19:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084696", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191084713", + "completed_at": "2026-07-31T18:30:00Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91191084713", + "id": 91191084713, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mGqQ", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T18:10:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:10:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:10:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:10:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:10:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:29:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:10:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:29:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:29:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:29:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:29:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191084713", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91238809277", + "completed_at": "2026-07-31T18:31:56Z", + "conclusion": "skipped", + "created_at": "2026-07-31T18:31:56Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "8fc119e83dbb3301482e0acee557b26b6468bcfe", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640229300/job/91238809277", + "id": 91238809277, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVPkG-vQ", + "run_attempt": 1, + "run_id": 30640229300, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640229300", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-31T18:31:56Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91238809277", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91187830726", + "completed_at": "2026-07-31T14:49:44Z", + "conclusion": "success", + "created_at": "2026-07-31T14:48:40Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91187830726", + "id": 91187830726, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVOzffxg", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000350, + "runner_name": "GitHub Actions 1000000350", + "started_at": "2026-07-31T14:48:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T14:48:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T14:48:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:48:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T14:48:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:05Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-31T14:48:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:33Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-31T14:49:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:40Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-31T14:49:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:40Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-31T14:49:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:40Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-31T14:49:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:41Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-31T14:49:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-31T14:49:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:49:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-31T14:49:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91187830726", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91187830953", + "completed_at": "2026-07-31T15:01:58Z", + "conclusion": "success", + "created_at": "2026-07-31T14:48:40Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91187830953", + "id": 91187830953, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVOzfgqQ", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T14:48:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T14:48:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T14:48:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:48:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T14:48:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:48:55Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-31T14:48:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T14:59:09Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-31T14:48:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:37Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-31T14:59:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:49Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-31T15:01:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-31T15:01:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:01:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-31T15:01:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91187830953", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191086897", + "completed_at": "2026-07-31T15:31:24Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191086897", + "id": 91191086897, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mPMQ", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T15:29:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T15:29:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T15:29:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:29:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T15:29:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:31:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T15:29:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:31:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T15:31:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T15:31:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T15:31:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191086897", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191086966", + "completed_at": "2026-07-31T20:12:44Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191086966", + "id": 91191086966, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mPdg", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T20:10:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T20:10:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T20:10:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:10:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T20:10:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:12:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T20:10:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:12:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T20:12:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:12:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T20:12:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191086966", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191086986", + "completed_at": "2026-07-31T18:33:32Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191086986", + "id": 91191086986, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mPig", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T18:31:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:32:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:32:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:32:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:32:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:33:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:32:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:33:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:33:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:33:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:33:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191086986", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191086994", + "completed_at": "2026-07-31T19:16:12Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191086994", + "id": 91191086994, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mPkg", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T19:15:28Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T19:15:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T19:15:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:15:35Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T19:15:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:16:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T19:15:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:16:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T19:16:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:16:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T19:16:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191086994", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087036", + "completed_at": "2026-07-31T16:37:05Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087036", + "id": 91191087036, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mPvA", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T16:16:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:16:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:16:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:16:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:16:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:37:01Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:16:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:37:02Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:37:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:37:02Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:37:02Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087036", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087047", + "completed_at": "2026-07-31T16:39:38Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087047", + "id": 91191087047, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mPxw", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T16:21:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:21:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:21:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:21:56Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:21:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:39:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:21:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:39:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T16:39:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:39:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T16:39:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087047", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087061", + "completed_at": "2026-07-31T18:39:24Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087061", + "id": 91191087061, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mP1Q", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T18:24:59Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:25:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:25:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:25:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:25:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:39:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:25:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:39:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:39:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:39:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:39:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087061", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087097", + "completed_at": "2026-07-31T17:47:40Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087097", + "id": 91191087097, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mP-Q", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T16:58:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T16:58:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T16:58:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T16:58:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T16:58:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:47:36Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T16:58:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:47:37Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T17:47:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T17:47:37Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T17:47:37Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087097", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087105", + "completed_at": "2026-07-31T19:15:26Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087105", + "id": 91191087105, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQAQ", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T18:47:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:47:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:47:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:47:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:47:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:15:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:47:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:15:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T19:15:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:15:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T19:15:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087105", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087126", + "completed_at": "2026-07-31T19:18:25Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087126", + "id": 91191087126, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQFg", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T19:16:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T19:16:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T19:16:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:16:20Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T19:16:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:18:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T19:16:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:18:22Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T19:18:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:18:22Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T19:18:22Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087126", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087162", + "completed_at": "2026-07-31T20:10:45Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087162", + "id": 91191087162, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQOg", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T19:18:27Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T19:18:32Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T19:18:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:18:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T19:18:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:10:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T19:18:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:10:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T20:10:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:10:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T20:10:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087162", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087175", + "completed_at": "2026-07-31T19:12:15Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087175", + "id": 91191087175, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQRw", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T18:39:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:39:30Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:39:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:39:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:39:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:12:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:39:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:12:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T19:12:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:12:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T19:12:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087175", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087182", + "completed_at": "2026-07-31T19:33:21Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087182", + "id": 91191087182, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQTg", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T19:12:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T19:12:21Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T19:12:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:12:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T19:12:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:33:16Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T19:12:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:33:17Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T19:33:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:33:17Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T19:33:17Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087182", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087187", + "completed_at": "2026-07-31T20:16:54Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087187", + "id": 91191087187, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQUw", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T19:33:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T19:33:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T19:33:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T19:33:29Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T19:33:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:16:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T19:33:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:16:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T20:16:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T20:16:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T20:16:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087187", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91191087209", + "completed_at": "2026-07-31T18:47:34Z", + "conclusion": "success", + "created_at": "2026-07-31T15:01:58Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91191087209", + "id": 91191087209, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVO2mQaQ", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T18:33:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T18:33:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T18:33:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:33:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T18:33:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:47:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T18:33:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:47:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T18:47:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T18:47:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T18:47:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91191087209", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91261068104", + "completed_at": "2026-07-31T20:16:54Z", + "conclusion": "skipped", + "created_at": "2026-07-31T20:16:54Z", + "head_branch": "main", + "head_sha": "f1e9efaeb652d81acfc40a6373eb95f69458aff5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30640181962/job/91261068104", + "id": 91261068104, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVP5VjSA", + "run_attempt": 1, + "run_id": 30640181962, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30640181962", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-31T20:16:54Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91261068104", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91138950296", + "completed_at": "2026-07-31T10:57:26Z", + "conclusion": "success", + "created_at": "2026-07-31T10:56:31Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91138950296", + "id": 91138950296, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVOE4EmA", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000349, + "runner_name": "GitHub Actions 1000000349", + "started_at": "2026-07-31T10:56:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T10:56:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T10:56:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:56:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T10:56:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:56:48Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-31T10:56:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:14Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-31T10:56:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:22Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-31T10:57:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:22Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-31T10:57:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:22Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-31T10:57:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:23Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-31T10:57:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-31T10:57:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:57:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-31T10:57:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91138950296", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91138950348", + "completed_at": "2026-07-31T11:05:17Z", + "conclusion": "success", + "created_at": "2026-07-31T10:56:31Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91138950348", + "id": 91138950348, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVOE4EzA", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T10:56:32Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T10:56:37Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T10:56:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:56:39Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T10:56:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T10:56:49Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-31T10:56:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:02:34Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-31T10:56:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:05:05Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-31T11:02:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:05:12Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-31T11:05:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:05:13Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-31T11:05:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:05:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-31T11:05:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91138950348", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623752", + "completed_at": "2026-07-31T13:03:31Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623752", + "id": 91140623752, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeNiA", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T13:02:45Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T13:02:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T13:02:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:02:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T13:02:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:03:27Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T13:02:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:03:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T13:03:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:03:28Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T13:03:28Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623752", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623755", + "completed_at": "2026-07-31T13:24:04Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623755", + "id": 91140623755, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeNiw", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T13:22:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T13:22:14Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T13:22:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:22:16Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T13:22:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:24:00Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T13:22:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:24:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T13:24:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:24:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T13:24:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623755", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623760", + "completed_at": "2026-07-31T12:31:59Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623760", + "id": 91140623760, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeNkA", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T12:29:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:29:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:29:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:29:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:29:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:31:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:29:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:31:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:31:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:31:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:31:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623760", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623767", + "completed_at": "2026-07-31T12:34:17Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623767", + "id": 91140623767, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeNlw", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T12:32:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:32:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:32:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:32:08Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:32:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:34:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:32:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:34:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:34:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:34:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:34:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623767", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623803", + "completed_at": "2026-07-31T11:36:06Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623803", + "id": 91140623803, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeNuw", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T11:05:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T11:05:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T11:05:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:05:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T11:05:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:36:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T11:05:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:36:03Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T11:36:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:36:03Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T11:36:03Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623803", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623810", + "completed_at": "2026-07-31T11:37:49Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623810", + "id": 91140623810, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeNwg", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T11:36:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T11:36:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T11:36:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:36:15Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T11:36:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:37:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T11:36:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:37:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T11:37:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:37:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T11:37:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623810", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623840", + "completed_at": "2026-07-31T11:58:08Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623840", + "id": 91140623840, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeN4A", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T11:05:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T11:05:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T11:05:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:05:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T11:05:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:58:04Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T11:05:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:58:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T11:58:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:58:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T11:58:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623840", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623851", + "completed_at": "2026-07-31T12:26:36Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623851", + "id": 91140623851, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeN6w", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T11:58:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T11:58:15Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T11:58:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:58:17Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T11:58:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:26:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T11:58:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:26:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:26:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:26:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:26:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623851", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623852", + "completed_at": "2026-07-31T12:37:45Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623852", + "id": 91140623852, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeN7A", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T12:26:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:26:43Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:26:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:26:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:26:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:37:40Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:26:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:37:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:37:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:37:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:37:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623852", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623853", + "completed_at": "2026-07-31T12:03:53Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623853", + "id": 91140623853, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeN7Q", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T11:37:50Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T11:37:55Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T11:37:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T11:37:57Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T11:37:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:03:49Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T11:37:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:03:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:03:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:03:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:03:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623853", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623856", + "completed_at": "2026-07-31T12:56:57Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623856", + "id": 91140623856, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeN8A", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T12:37:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:37:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:37:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:37:53Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:37:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:56:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:37:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:56:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:56:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:56:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:56:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623856", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623857", + "completed_at": "2026-07-31T13:37:54Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623857", + "id": 91140623857, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeN8Q", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T13:03:32Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T13:03:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T13:03:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:03:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T13:03:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:37:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T13:03:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:37:51Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T13:37:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:37:51Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T13:37:51Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623857", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623875", + "completed_at": "2026-07-31T12:29:42Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623875", + "id": 91140623875, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeOAw", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T12:03:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:04:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:03:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:04:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:04:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:29:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:04:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:29:39Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T12:29:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:29:39Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T12:29:39Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623875", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623882", + "completed_at": "2026-07-31T13:22:08Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623882", + "id": 91140623882, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeOCg", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T12:56:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:57:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:57:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:57:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:57:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:22:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:57:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:22:04Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T13:22:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:22:04Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T13:22:04Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623882", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91140623890", + "completed_at": "2026-07-31T13:02:43Z", + "conclusion": "success", + "created_at": "2026-07-31T11:05:17Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91140623890", + "id": 91140623890, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVOGeOEg", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T12:34:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T12:34:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T12:34:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T12:34:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T12:34:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:02:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T12:34:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:02:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T13:02:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T13:02:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T13:02:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91140623890", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91171034313", + "completed_at": "2026-07-31T13:37:55Z", + "conclusion": "skipped", + "created_at": "2026-07-31T13:37:55Z", + "head_branch": "nginx-overhaul", + "head_sha": "a30e9429fee9997822c8ef0884e0827aaf20a03e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30625273247/job/91171034313", + "id": 91171034313, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVOjeUyQ", + "run_attempt": 1, + "run_id": 30625273247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30625273247", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-31T13:37:55Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91171034313", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90999677776", + "completed_at": "2026-07-31T03:02:45Z", + "conclusion": "success", + "created_at": "2026-07-30T20:46:30Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/90999677776", + "id": 90999677776, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVMADjUA", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T02:46:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T02:46:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T02:46:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:46:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T02:46:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:46:27Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-31T02:46:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:59:31Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-31T02:46:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:02:30Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-31T02:59:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:02:36Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-31T03:02:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:02:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-31T03:02:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:02:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-31T03:02:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90999677776", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90999677867", + "completed_at": "2026-07-30T20:47:22Z", + "conclusion": "success", + "created_at": "2026-07-30T20:46:30Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/90999677867", + "id": 90999677867, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVMADjqw", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000348, + "runner_name": "GitHub Actions 1000000348", + "started_at": "2026-07-30T20:46:32Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T20:46:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T20:46:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:46:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T20:46:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:46:45Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-30T20:46:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:12Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-30T20:46:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:19Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-30T20:47:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:19Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-30T20:47:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:19Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-30T20:47:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:21Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-30T20:47:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-30T20:47:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-30T20:47:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90999677867", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047661", + "completed_at": "2026-07-31T03:48:18Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047661", + "id": 91062047661, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iTrQ", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T03:46:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T03:46:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T03:46:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:46:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T03:46:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:48:14Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T03:46:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:48:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T03:48:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:48:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T03:48:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047661", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047683", + "completed_at": "2026-07-31T04:24:51Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047683", + "id": 91062047683, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iTww", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T04:21:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T04:22:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T04:22:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:22:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T04:22:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:24:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T04:22:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:24:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T04:24:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:24:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T04:24:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047683", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047687", + "completed_at": "2026-07-31T05:07:32Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047687", + "id": 91062047687, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iTxw", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T05:06:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:06:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:06:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:06:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:06:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:07:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:06:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:07:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:07:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:07:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:07:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047687", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047702", + "completed_at": "2026-07-31T05:34:52Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047702", + "id": 91062047702, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iT1g", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T05:32:37Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:32:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:32:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:32:44Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:32:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:34:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:32:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:34:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:34:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:34:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:34:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047702", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047720", + "completed_at": "2026-07-31T07:06:51Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047720", + "id": 91062047720, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iT6A", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T07:04:59Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T07:05:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T07:05:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:05:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T07:05:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:06:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T07:05:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:06:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T07:06:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:06:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T07:06:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047720", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047761", + "completed_at": "2026-07-31T05:54:01Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047761", + "id": 91062047761, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUEQ", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T05:26:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:26:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:26:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:26:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:26:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:53:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:26:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:53:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:53:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:53:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:53:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047761", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047762", + "completed_at": "2026-07-31T05:26:16Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047762", + "id": 91062047762, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUEg", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T05:00:45Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:00:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:00:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:00:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:00:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:26:12Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:00:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:26:13Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:26:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:26:13Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:26:13Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047762", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047765", + "completed_at": "2026-07-31T05:06:40Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047765", + "id": 91062047765, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUFQ", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T04:50:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T04:50:30Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T04:50:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:50:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T04:50:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:06:36Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T04:50:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:06:36Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:06:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:06:36Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:06:36Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047765", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047775", + "completed_at": "2026-07-31T04:21:56Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047775", + "id": 91062047775, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUHw", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T03:48:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T03:48:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T03:48:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:48:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T03:48:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:21:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T03:48:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:21:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T04:21:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:21:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T04:21:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047775", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047779", + "completed_at": "2026-07-31T05:00:43Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047779", + "id": 91062047779, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUIw", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T04:24:53Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T04:24:57Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T04:24:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:24:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T04:24:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:00:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T04:24:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:00:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:00:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:00:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:00:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047779", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047794", + "completed_at": "2026-07-31T06:55:26Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047794", + "id": 91062047794, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUMg", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T05:54:03Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:54:07Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:54:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:54:10Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:54:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T06:55:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:54:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T06:55:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T06:55:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T06:55:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T06:55:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047794", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047796", + "completed_at": "2026-07-31T04:50:24Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047796", + "id": 91062047796, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUNA", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T04:20:30Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T04:20:34Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T04:20:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:20:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T04:20:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:50:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T04:20:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:50:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T04:50:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:50:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T04:50:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047796", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047811", + "completed_at": "2026-07-31T05:32:35Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047811", + "id": 91062047811, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUQw", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T05:07:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:07:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:07:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:07:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:07:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:32:31Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:07:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:32:32Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T05:32:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:32:32Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T05:32:32Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047811", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047832", + "completed_at": "2026-07-31T07:04:57Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047832", + "id": 91062047832, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUWA", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-31T05:34:54Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T05:34:58Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T05:34:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T05:35:00Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T05:34:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:04:54Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T05:35:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:04:55Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T07:04:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:04:55Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T07:04:55Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047832", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91062047835", + "completed_at": "2026-07-31T07:16:48Z", + "conclusion": "success", + "created_at": "2026-07-31T03:02:45Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91062047835", + "id": 91062047835, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVM7iUWw", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T06:55:29Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T06:55:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T06:55:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T06:55:35Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T06:55:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:16:44Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T06:55:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:16:45Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T07:16:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T07:16:45Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T07:16:45Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91062047835", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91097562842", + "completed_at": "2026-07-31T07:16:48Z", + "conclusion": "skipped", + "created_at": "2026-07-31T07:16:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "465f6ae199716e5f4500d336e052d9345472cb12", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30580627931/job/91097562842", + "id": 91097562842, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVNdZ-2g", + "run_attempt": 1, + "run_id": 30580627931, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30580627931", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-31T07:16:49Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91097562842", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90947168127", + "completed_at": "2026-07-30T17:13:58Z", + "conclusion": "success", + "created_at": "2026-07-30T17:13:08Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90947168127", + "id": 90947168127, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAVLN-nfw", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000346, + "runner_name": "GitHub Actions 1000000346", + "started_at": "2026-07-30T17:13:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T17:13:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T17:13:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T17:13:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:23Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-30T17:13:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:49Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-30T17:13:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:56Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-30T17:13:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:56Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-30T17:13:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:56Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-30T17:13:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:57Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-30T17:13:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-30T17:13:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:13:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-30T17:13:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90947168127", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90947168310", + "completed_at": "2026-07-30T18:03:27Z", + "conclusion": "success", + "created_at": "2026-07-30T17:13:08Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90947168310", + "id": 90947168310, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAVLN-oNg", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-30T17:49:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T17:50:01Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T17:49:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:50:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T17:50:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T17:50:12Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-30T17:50:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:00:21Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-30T17:50:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:03:12Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-30T18:00:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:03:19Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-30T18:03:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:03:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-30T18:03:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:03:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-30T18:03:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90947168310", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712277", + "completed_at": "2026-07-30T19:16:33Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712277", + "id": 90959712277, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QFQ", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-30T19:14:53Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T19:14:57Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T19:14:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:15:00Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T19:14:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:16:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T19:15:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:16:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T19:16:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:16:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T19:16:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712277", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712290", + "completed_at": "2026-07-30T19:17:24Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712290", + "id": 90959712290, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QIg", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-30T19:16:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T19:16:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T19:16:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:16:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T19:16:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T19:16:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:22Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T19:17:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:22Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T19:17:22Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712290", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712342", + "completed_at": "2026-07-30T19:14:49Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712342", + "id": 90959712342, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QVg", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-30T18:03:32Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T18:03:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T18:03:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:03:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T18:03:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:14:46Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T18:03:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:14:47Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T19:14:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:14:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T19:14:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712342", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712371", + "completed_at": "2026-07-30T19:22:12Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712371", + "id": 90959712371, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8Qcw", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-30T19:17:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T19:17:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T19:17:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T19:17:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:22:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T19:17:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:22:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T19:22:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:22:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T19:22:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712371", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712388", + "completed_at": "2026-07-31T02:46:12Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712388", + "id": 90959712388, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QhA", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T02:44:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T02:44:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T02:44:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:44:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T02:44:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:46:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T02:44:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:46:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T02:46:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:46:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T02:46:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712388", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712400", + "completed_at": "2026-07-31T00:30:32Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712400", + "id": 90959712400, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QkA", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-30T19:24:30Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T19:24:34Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T19:24:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:24:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T19:24:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:30:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T19:24:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:30:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T00:30:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:30:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T00:30:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712400", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712410", + "completed_at": "2026-07-30T20:47:35Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712410", + "id": 90959712410, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8Qmg", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-30T19:57:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T19:57:28Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T19:57:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:57:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T19:57:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T19:57:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T20:47:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T20:47:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712410", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712418", + "completed_at": "2026-07-30T19:17:21Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712418", + "id": 90959712418, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8Qog", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-30T18:51:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T18:51:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T18:51:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:51:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T18:51:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T18:51:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T19:17:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T19:17:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712418", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712437", + "completed_at": "2026-07-30T18:51:31Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712437", + "id": 90959712437, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QtQ", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-30T18:05:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T18:05:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T18:05:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:05:44Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T18:05:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:51:27Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T18:05:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:51:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T18:51:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T18:51:28Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T18:51:28Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712437", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712441", + "completed_at": "2026-07-31T01:54:17Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712441", + "id": 90959712441, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QuQ", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T00:59:13Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T00:59:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T00:59:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:59:20Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T00:59:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T01:54:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T00:59:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T01:54:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T01:54:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T01:54:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T01:54:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712441", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712457", + "completed_at": "2026-07-31T03:46:32Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712457", + "id": 90959712457, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QyQ", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T03:02:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T03:02:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T03:02:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:02:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T03:02:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:46:27Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T03:02:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:46:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T03:46:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T03:46:28Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T03:46:28Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712457", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712461", + "completed_at": "2026-07-31T00:58:11Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712461", + "id": 90959712461, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8QzQ", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T00:30:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T00:30:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T00:30:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:30:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T00:30:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:58:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T00:30:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:58:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T00:58:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T00:58:08Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T00:58:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712461", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712495", + "completed_at": "2026-07-31T04:20:28Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712495", + "id": 90959712495, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8Q7w", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-30T20:47:37Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T20:47:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T20:47:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T20:47:44Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T20:47:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:20:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T20:47:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:20:24Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T04:20:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T04:20:24Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T04:20:24Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712495", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712631", + "completed_at": "2026-07-30T19:22:07Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712631", + "id": 90959712631, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8Rdw", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-30T19:17:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-30T19:17:32Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-30T19:17:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:17:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-30T19:17:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:22:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-30T19:17:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:22:04Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-30T19:22:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-30T19:22:04Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-30T19:22:04Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712631", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90959712729", + "completed_at": "2026-07-31T02:44:16Z", + "conclusion": "success", + "created_at": "2026-07-30T18:03:27Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/90959712729", + "id": 90959712729, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAVLZ8R2Q", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-31T01:55:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-31T01:55:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-31T01:55:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T01:55:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-31T01:55:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:44:12Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-31T01:55:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:44:13Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-31T02:44:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-31T02:44:13Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-31T02:44:13Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90959712729", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/91072149178", + "completed_at": "2026-07-31T04:20:28Z", + "conclusion": "skipped", + "created_at": "2026-07-31T04:20:28Z", + "head_branch": "nginx-overhaul", + "head_sha": "a2ec570cc5bc468e342f77ab7aefad4b61d85c16", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30564968175/job/91072149178", + "id": 91072149178, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAVNFK2ug", + "run_attempt": 1, + "run_id": 30564968175, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30564968175", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-31T04:20:28Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/91072149178", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90022149228", + "completed_at": "2026-07-27T15:21:50Z", + "conclusion": "success", + "created_at": "2026-07-27T15:20:56Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90022149228", + "id": 90022149228, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU9bz8bA", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000336, + "runner_name": "GitHub Actions 1000000336", + "started_at": "2026-07-27T15:20:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:21:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:20:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:21:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:12Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-27T15:21:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:40Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-27T15:21:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:46Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-27T15:21:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:46Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-27T15:21:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:46Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-27T15:21:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:48Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-27T15:21:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-27T15:21:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-27T15:21:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90022149228", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90022149331", + "completed_at": "2026-07-27T15:31:12Z", + "conclusion": "success", + "created_at": "2026-07-27T15:20:56Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90022149331", + "id": 90022149331, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU9bz80w", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T15:20:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:21:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:21:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:21:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:21:15Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-27T15:21:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:28:03Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-27T15:21:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:30:59Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-27T15:28:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:31:07Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-27T15:30:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:31:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-27T15:31:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:31:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-27T15:31:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90022149331", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939204", + "completed_at": "2026-07-27T15:33:24Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939204", + "id": 90024939204, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeOxA", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T15:31:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:31:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:31:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:31:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:31:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:33:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:31:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:33:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T15:33:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:33:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T15:33:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939204", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939216", + "completed_at": "2026-07-27T15:34:05Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939216", + "id": 90024939216, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeO0A", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T15:31:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:31:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:31:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:31:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:31:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:34:00Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:31:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:34:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T15:34:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:34:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T15:34:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939216", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939248", + "completed_at": "2026-07-27T15:47:07Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939248", + "id": 90024939248, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeO8A", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T15:46:11Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:46:16Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:46:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:46:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:46:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:47:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:46:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:47:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T15:47:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:47:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T15:47:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939248", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939323", + "completed_at": "2026-07-27T17:46:38Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939323", + "id": 90024939323, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePOw", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T17:44:29Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T17:44:34Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T17:44:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:44:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T17:44:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:46:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T17:44:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:46:34Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T17:46:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:46:34Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T17:46:34Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939323", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939375", + "completed_at": "2026-07-27T16:53:14Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939375", + "id": 90024939375, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePbw", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T16:50:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T16:50:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T16:50:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:50:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T16:50:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:53:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T16:50:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:53:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T16:53:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:53:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T16:53:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939375", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939382", + "completed_at": "2026-07-27T15:46:09Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939382", + "id": 90024939382, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePdg", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T15:33:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:33:30Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:33:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:33:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:33:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:46:04Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:33:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:46:06Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T15:46:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:46:06Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T15:46:06Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939382", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939408", + "completed_at": "2026-07-27T17:19:13Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939408", + "id": 90024939408, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePkA", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T16:43:35Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T16:43:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T16:43:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:43:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T16:43:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:19:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T16:43:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:19:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T17:19:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:19:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T17:19:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939408", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939414", + "completed_at": "2026-07-27T15:59:45Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939414", + "id": 90024939414, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePlg", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T15:47:09Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:47:14Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:47:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:47:16Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:47:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:59:40Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:47:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:59:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T15:59:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:59:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T15:59:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939414", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939424", + "completed_at": "2026-07-27T15:52:13Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939424", + "id": 90024939424, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePoA", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T15:34:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:34:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:34:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:34:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:34:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:52:09Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:34:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:52:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T15:52:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:52:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T15:52:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939424", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939449", + "completed_at": "2026-07-27T17:44:27Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939449", + "id": 90024939449, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePuQ", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T17:19:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T17:19:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T17:19:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:19:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T17:19:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:44:23Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T17:19:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:44:24Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T17:44:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:44:24Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T17:44:24Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939449", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939460", + "completed_at": "2026-07-27T17:21:52Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939460", + "id": 90024939460, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eePxA", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T16:53:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T16:53:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T16:53:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:53:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T16:53:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:21:48Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T16:53:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:21:49Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T17:21:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:21:49Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T17:21:49Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939460", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939485", + "completed_at": "2026-07-27T16:43:32Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939485", + "id": 90024939485, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeP3Q", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-27T15:59:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:59:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:59:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:59:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:59:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:43:27Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:59:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:43:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T16:43:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:43:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T16:43:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939485", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939506", + "completed_at": "2026-07-27T16:50:42Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939506", + "id": 90024939506, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeP8g", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T16:38:11Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T16:38:16Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T16:38:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:38:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T16:38:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:50:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T16:38:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:50:39Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T16:50:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:50:39Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T16:50:39Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939506", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939532", + "completed_at": "2026-07-27T16:38:09Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939532", + "id": 90024939532, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeQDA", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T15:52:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T15:52:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T15:52:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T15:52:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T15:52:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:38:05Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T15:52:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:38:06Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T16:38:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T16:38:06Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T16:38:06Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939532", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90024939577", + "completed_at": "2026-07-27T17:57:13Z", + "conclusion": "success", + "created_at": "2026-07-27T15:31:12Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90024939577", + "id": 90024939577, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU9eeQOQ", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-27T17:21:54Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-27T17:21:59Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-27T17:21:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:22:01Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-27T17:21:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:57:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-27T17:22:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:57:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-27T17:57:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-27T17:57:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-27T17:57:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90024939577", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/90062329847", + "completed_at": "2026-07-27T17:57:13Z", + "conclusion": "skipped", + "created_at": "2026-07-27T17:57:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "658dd9865cb571c14d18c47de0adcfe4fa00976d", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30279554921/job/90062329847", + "id": 90062329847, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU-CIX9w", + "run_attempt": 1, + "run_id": 30279554921, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30279554921", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-27T17:57:13Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/90062329847", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89835561394", + "completed_at": "2026-07-26T20:01:36Z", + "conclusion": "success", + "created_at": "2026-07-26T20:00:43Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89835561394", + "id": 89835561394, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU6p3hsg", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000335, + "runner_name": "GitHub Actions 1000000335", + "started_at": "2026-07-26T20:00:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T20:00:47Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T20:00:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:00:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T20:00:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:02Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-26T20:00:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:28Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-26T20:01:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:32Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-26T20:01:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:32Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-26T20:01:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:32Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-26T20:01:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:33Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-26T20:01:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:34Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-26T20:01:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:01:34Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-26T20:01:34Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89835561394", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89835561410", + "completed_at": "2026-07-26T20:10:13Z", + "conclusion": "success", + "created_at": "2026-07-26T20:00:43Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89835561410", + "id": 89835561410, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU6p3hwg", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T20:00:45Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T20:00:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T20:00:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:00:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T20:00:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:00:59Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-26T20:00:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:07:23Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-26T20:00:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:10:00Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-26T20:07:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:10:08Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-26T20:10:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:10:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-26T20:10:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:10:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-26T20:10:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89835561410", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447058", + "completed_at": "2026-07-26T20:13:07Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447058", + "id": 89836447058, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlUg", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T20:10:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T20:10:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T20:10:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:10:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T20:10:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:13:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T20:10:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:13:03Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T20:13:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:13:04Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T20:13:03Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447058", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447069", + "completed_at": "2026-07-26T22:57:03Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447069", + "id": 89836447069, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlXQ", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T22:54:50Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T22:54:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T22:54:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:54:57Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T22:54:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:56:58Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T22:54:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:56:59Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T22:56:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:56:59Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T22:56:59Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447069", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447076", + "completed_at": "2026-07-26T21:43:34Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447076", + "id": 89836447076, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlZA", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T21:42:41Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:42:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:42:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:42:48Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:42:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:43:31Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:42:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:43:32Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:43:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:43:32Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:43:32Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447076", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447085", + "completed_at": "2026-07-26T21:42:39Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447085", + "id": 89836447085, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlbQ", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T21:39:59Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:40:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:40:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:40:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:40:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:42:35Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:40:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:42:36Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:42:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:42:36Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:42:36Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447085", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447113", + "completed_at": "2026-07-26T21:15:53Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447113", + "id": 89836447113, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtliQ", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T21:14:04Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:14:08Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:14:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:14:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:14:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:15:49Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:14:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:15:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:15:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:15:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:15:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447113", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447130", + "completed_at": "2026-07-26T21:14:02Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447130", + "id": 89836447130, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlmg", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T20:13:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T20:13:13Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T20:13:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:13:16Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T20:13:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:13:58Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T20:13:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:13:59Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:13:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:13:59Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:13:59Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447130", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447159", + "completed_at": "2026-07-26T21:33:46Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447159", + "id": 89836447159, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtltw", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T21:15:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:16:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:15:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:16:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:16:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:33:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:16:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:33:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:33:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:33:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:33:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447159", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447164", + "completed_at": "2026-07-26T21:39:57Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447164", + "id": 89836447164, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlvA", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T21:23:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:23:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:23:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:23:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:23:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:39:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:23:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:39:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:39:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:39:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:39:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447164", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447169", + "completed_at": "2026-07-26T21:23:21Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447169", + "id": 89836447169, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlwQ", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T20:10:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T20:10:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T20:10:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T20:10:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T20:10:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:23:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T20:10:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:23:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:23:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:23:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:23:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447169", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447173", + "completed_at": "2026-07-26T21:51:46Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447173", + "id": 89836447173, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlxQ", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T21:33:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:33:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:33:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:33:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:33:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:51:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:33:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:51:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T21:51:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:51:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T21:51:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447173", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447179", + "completed_at": "2026-07-26T22:21:10Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447179", + "id": 89836447179, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtlyw", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T21:43:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:43:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:43:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:43:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:43:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:21:06Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:43:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:21:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T22:21:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:21:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T22:21:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447179", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447188", + "completed_at": "2026-07-26T22:31:46Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447188", + "id": 89836447188, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtl1A", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T22:21:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T22:21:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T22:21:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:21:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T22:21:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:31:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T22:21:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:31:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T22:31:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:31:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T22:31:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447188", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447189", + "completed_at": "2026-07-26T22:24:03Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447189", + "id": 89836447189, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtl1Q", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T21:51:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T21:51:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T21:51:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T21:51:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T21:51:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:23:59Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T21:51:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:24:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T22:23:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:24:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T22:24:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447189", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447211", + "completed_at": "2026-07-26T22:54:48Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447211", + "id": 89836447211, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtl6w", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T22:24:05Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T22:24:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T22:24:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:24:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T22:24:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:54:44Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T22:24:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:54:45Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T22:54:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:54:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T22:54:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447211", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89836447219", + "completed_at": "2026-07-26T23:11:26Z", + "conclusion": "success", + "created_at": "2026-07-26T20:10:13Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89836447219", + "id": 89836447219, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU6qtl8w", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T22:31:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T22:31:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T22:31:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T22:31:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T22:31:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T23:11:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T22:31:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T23:11:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T23:11:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T23:11:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T23:11:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89836447219", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89852917387", + "completed_at": "2026-07-26T23:11:26Z", + "conclusion": "skipped", + "created_at": "2026-07-26T23:11:26Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "cddb01d3d3356293784c5d1655a4e992c0ff9f80", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30218062762/job/89852917387", + "id": 89852917387, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU66a2iw", + "run_attempt": 1, + "run_id": 30218062762, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30218062762", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-26T23:11:26Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89852917387", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89811463362", + "completed_at": "2026-07-26T15:53:18Z", + "conclusion": "success", + "created_at": "2026-07-26T15:43:29Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89811463362", + "id": 89811463362, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU6S4swg", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T15:43:31Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:43:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:43:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:43:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:43:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:43:45Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-26T15:43:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:50:28Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-26T15:43:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:53:06Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-26T15:50:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:53:13Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-26T15:53:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:53:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-26T15:53:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:53:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-26T15:53:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89811463362", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89811463368", + "completed_at": "2026-07-26T15:44:22Z", + "conclusion": "success", + "created_at": "2026-07-26T15:43:29Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89811463368", + "id": 89811463368, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU6S4syA", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000334, + "runner_name": "GitHub Actions 1000000334", + "started_at": "2026-07-26T15:43:31Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:43:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:43:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:43:35Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:43:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:43:44Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-26T15:43:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:12Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-26T15:43:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:19Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-26T15:44:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:19Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-26T15:44:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:19Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-26T15:44:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:20Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-26T15:44:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-26T15:44:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:44:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-26T15:44:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89811463368", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812382976", + "completed_at": "2026-07-26T15:57:00Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812382976", + "id": 89812382976, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1AA", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T15:55:04Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:55:09Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:55:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:55:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:55:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T15:55:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T15:56:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T15:56:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812382976", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812382979", + "completed_at": "2026-07-26T15:55:02Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812382979", + "id": 89812382979, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1Aw", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T15:53:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:53:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:53:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:53:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:53:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:54:58Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T15:53:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:54:59Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T15:54:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:54:59Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T15:54:59Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812382979", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812382994", + "completed_at": "2026-07-26T15:56:11Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812382994", + "id": 89812382994, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1Eg", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T15:53:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:53:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:53:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:53:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:53:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T15:53:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T15:56:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:08Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T15:56:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812382994", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383040", + "completed_at": "2026-07-26T18:22:26Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383040", + "id": 89812383040, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1QA", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T18:20:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T18:20:06Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T18:20:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:20:08Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T18:20:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:22:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T18:20:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:22:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T18:22:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:22:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T18:22:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383040", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383059", + "completed_at": "2026-07-26T17:43:12Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383059", + "id": 89812383059, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1Uw", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T17:40:35Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T17:40:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T17:40:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:40:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T17:40:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:43:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T17:40:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:43:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T17:43:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:43:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T17:43:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383059", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383096", + "completed_at": "2026-07-26T17:40:34Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383096", + "id": 89812383096, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1eA", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T16:54:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T16:55:01Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T16:54:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:55:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T16:55:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:40:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T16:55:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:40:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T17:40:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:40:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T17:40:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383096", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383106", + "completed_at": "2026-07-26T17:22:46Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383106", + "id": 89812383106, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1gg", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T16:52:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T16:52:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T16:52:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:52:53Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T16:52:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:22:37Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T16:52:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:22:38Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T17:22:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:22:38Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T17:22:38Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383106", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383109", + "completed_at": "2026-07-26T16:20:36Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383109", + "id": 89812383109, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1hQ", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T15:56:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:56:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:56:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:56:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:56:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:20:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T15:56:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:20:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T16:20:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:20:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T16:20:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383109", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383111", + "completed_at": "2026-07-26T16:52:44Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383111", + "id": 89812383111, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1hw", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T15:57:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T15:57:06Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T15:57:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T15:57:09Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T15:57:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:52:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T15:57:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:52:41Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T16:52:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:52:41Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T16:52:41Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383111", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383113", + "completed_at": "2026-07-26T17:45:24Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383113", + "id": 89812383113, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1iQ", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T17:22:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T17:22:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T17:22:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:22:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T17:22:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:45:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T17:22:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:45:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T17:45:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:45:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T17:45:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383113", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383115", + "completed_at": "2026-07-26T16:54:55Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383115", + "id": 89812383115, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1iw", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T16:20:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T16:20:43Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T16:20:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:20:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T16:20:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:54:51Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T16:20:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:54:52Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T16:54:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T16:54:52Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T16:54:52Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383115", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383116", + "completed_at": "2026-07-26T18:19:59Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383116", + "id": 89812383116, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1jA", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T18:09:56Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T18:10:01Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T18:09:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:10:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T18:10:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:19:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T18:10:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:19:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T18:19:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:19:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T18:19:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383116", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383122", + "completed_at": "2026-07-26T18:09:54Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383122", + "id": 89812383122, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1kg", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T17:43:13Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T17:43:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T17:43:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:43:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T17:43:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:09:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T17:43:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:09:51Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T18:09:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:09:51Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T18:09:51Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383122", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383125", + "completed_at": "2026-07-26T18:12:34Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383125", + "id": 89812383125, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1lQ", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T17:45:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T17:45:31Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T17:45:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T17:45:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T17:45:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:12:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T17:45:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:12:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T18:12:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:12:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T18:12:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383125", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89812383137", + "completed_at": "2026-07-26T18:36:22Z", + "conclusion": "success", + "created_at": "2026-07-26T15:53:18Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89812383137", + "id": 89812383137, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU6Tw1oQ", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T18:12:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T18:12:41Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T18:12:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:12:44Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T18:12:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:36:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T18:12:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:36:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T18:36:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T18:36:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T18:36:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89812383137", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89827796988", + "completed_at": "2026-07-26T18:36:22Z", + "conclusion": "skipped", + "created_at": "2026-07-26T18:36:23Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "c8696bd4f1679eae619bd8edccc8ae6451ca5cb1", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30208813247/job/89827796988", + "id": 89827796988, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU6idn_A", + "run_attempt": 1, + "run_id": 30208813247, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30208813247", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-26T18:36:23Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89827796988", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89781347393", + "completed_at": "2026-07-26T09:59:50Z", + "conclusion": "success", + "created_at": "2026-07-26T09:58:59Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89781347393", + "id": 89781347393, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU52KkQQ", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000332, + "runner_name": "GitHub Actions 1000000332", + "started_at": "2026-07-26T09:59:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T09:59:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T09:59:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T09:59:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:13Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-26T09:59:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:41Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-26T09:59:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:48Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-26T09:59:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:48Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-26T09:59:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:48Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-26T09:59:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:49Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-26T09:59:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:49Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-26T09:59:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:49Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-26T09:59:49Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89781347393", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89781347433", + "completed_at": "2026-07-26T10:08:53Z", + "conclusion": "success", + "created_at": "2026-07-26T09:58:59Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89781347433", + "id": 89781347433, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU52KkaQ", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T09:59:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T09:59:06Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T09:59:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:08Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T09:59:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T09:59:17Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-26T09:59:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:06:17Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-26T09:59:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:08:42Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-26T10:06:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:08:50Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-26T10:08:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:08:51Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-26T10:08:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:08:51Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-26T10:08:51Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89781347433", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182639", + "completed_at": "2026-07-26T12:08:19Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182639", + "id": 89782182639, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU529i7w", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T12:06:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T12:06:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T12:06:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:06:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T12:06:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:08:15Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T12:06:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:08:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T12:08:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:08:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T12:08:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182639", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182647", + "completed_at": "2026-07-26T10:11:36Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182647", + "id": 89782182647, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU529i9w", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T10:08:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:09:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:08:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:09:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:09:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:11:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:09:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:11:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:11:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:11:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:11:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182647", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182648", + "completed_at": "2026-07-26T10:12:22Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182648", + "id": 89782182648, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU529i-A", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T10:10:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:10:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:10:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:10:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:10:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:12:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:10:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:12:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:12:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:12:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:12:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182648", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182649", + "completed_at": "2026-07-26T10:10:47Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:53Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182649", + "id": 89782182649, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU529i-Q", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T10:08:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:09:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:08:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:09:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:09:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:10:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:09:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:10:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:10:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:10:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:10:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182649", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182659", + "completed_at": "2026-07-26T10:24:18Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182659", + "id": 89782182659, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jAw", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T10:21:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:21:47Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:21:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:21:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:21:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:24:14Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:21:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:24:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:24:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:24:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:24:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182659", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182666", + "completed_at": "2026-07-26T10:38:38Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182666", + "id": 89782182666, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jCg", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T10:24:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:24:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:24:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:24:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:24:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:38:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:24:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:38:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:38:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:38:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:38:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182666", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182667", + "completed_at": "2026-07-26T10:21:40Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182667", + "id": 89782182667, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jCw", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T10:11:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:11:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:11:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:11:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:11:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:21:36Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:11:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:21:37Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:21:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:21:37Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:21:37Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182667", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182672", + "completed_at": "2026-07-26T10:26:38Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182672", + "id": 89782182672, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jEA", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T10:12:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:12:28Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:12:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:12:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:12:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:26:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:12:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:26:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:26:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:26:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:26:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182672", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182677", + "completed_at": "2026-07-26T11:45:42Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182677", + "id": 89782182677, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jFQ", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T11:17:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T11:17:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T11:17:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:17:56Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T11:17:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:45:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T11:17:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:45:39Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T11:45:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:45:39Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T11:45:39Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182677", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182678", + "completed_at": "2026-07-26T11:23:19Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182678", + "id": 89782182678, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jFg", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T10:43:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:43:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:43:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:43:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:43:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:23:15Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:43:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:23:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T11:23:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:23:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T11:23:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182678", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182679", + "completed_at": "2026-07-26T11:17:47Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182679", + "id": 89782182679, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jFw", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T10:38:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:38:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:38:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:38:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:38:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:17:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:38:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:17:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T11:17:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:17:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T11:17:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182679", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182680", + "completed_at": "2026-07-26T11:48:23Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182680", + "id": 89782182680, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jGA", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T11:23:21Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T11:23:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T11:23:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:23:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T11:23:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:48:19Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T11:23:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:48:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T11:48:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:48:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T11:48:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182680", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182682", + "completed_at": "2026-07-26T10:43:42Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182682", + "id": 89782182682, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jGg", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T10:26:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T10:26:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T10:26:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:26:46Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T10:26:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:43:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T10:26:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:43:39Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T10:43:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T10:43:39Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T10:43:39Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182682", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182685", + "completed_at": "2026-07-26T12:33:43Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182685", + "id": 89782182685, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jHQ", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T11:48:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T11:48:30Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T11:48:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:48:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T11:48:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:33:39Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T11:48:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:33:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T12:33:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:33:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T12:33:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182685", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89782182696", + "completed_at": "2026-07-26T12:06:05Z", + "conclusion": "success", + "created_at": "2026-07-26T10:08:54Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89782182696", + "id": 89782182696, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU529jKA", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T11:45:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T11:45:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T11:45:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T11:45:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T11:45:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:06:00Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T11:45:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:06:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T12:06:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T12:06:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T12:06:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89782182696", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89794238754", + "completed_at": "2026-07-26T12:33:43Z", + "conclusion": "skipped", + "created_at": "2026-07-26T12:33:43Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "4dd41485541c43dc2cd59a887d5ad032fd016d37", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30197430777/job/89794238754", + "id": 89794238754, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU6CdZIg", + "run_attempt": 1, + "run_id": 30197430777, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30197430777", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-26T12:33:43Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89794238754", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726089720", + "completed_at": "2026-07-25T22:04:49Z", + "conclusion": "success", + "created_at": "2026-07-25T21:54:06Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726089720", + "id": 89726089720, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU5Bd5-A", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T21:54:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T21:54:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T21:54:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T21:54:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:30Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-25T21:54:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:01:32Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-25T21:54:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:35Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-25T22:01:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:45Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-25T22:04:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-25T22:04:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-25T22:04:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726089720", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726089732", + "completed_at": "2026-07-25T21:54:58Z", + "conclusion": "success", + "created_at": "2026-07-25T21:54:06Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726089732", + "id": 89726089732, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU5Bd6BA", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000330, + "runner_name": "GitHub Actions 1000000330", + "started_at": "2026-07-25T21:54:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T21:54:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T21:54:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T21:54:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:22Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-25T21:54:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:47Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-25T21:54:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:54Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-25T21:54:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:54Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-25T21:54:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:54Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-25T21:54:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:56Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-25T21:54:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-25T21:54:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-25T21:54:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726089732", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979055", + "completed_at": "2026-07-25T23:05:38Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979055", + "id": 89726979055, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUL7w", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T22:25:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:25:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:25:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:25:56Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:25:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:05:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:25:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:05:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T23:05:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:05:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T23:05:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979055", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979067", + "completed_at": "2026-07-25T23:54:36Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979067", + "id": 89726979067, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUL-w", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T23:53:41Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T23:53:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T23:53:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:53:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T23:53:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:54:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T23:53:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:54:34Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T23:54:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:54:34Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T23:54:34Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979067", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979073", + "completed_at": "2026-07-26T00:58:32Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979073", + "id": 89726979073, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMAQ", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T00:56:00Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:56:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:56:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:56:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:56:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:58:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:56:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:58:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:58:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:58:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:58:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979073", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979075", + "completed_at": "2026-07-26T01:01:04Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979075", + "id": 89726979075, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMAw", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T00:58:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:58:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:58:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:58:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:58:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:00Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:58:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:02Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T01:01:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:02Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T01:01:02Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979075", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979083", + "completed_at": "2026-07-26T03:08:24Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979083", + "id": 89726979083, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMCw", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T03:06:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T03:06:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T03:06:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:06:13Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T03:06:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:08:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T03:06:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:08:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T03:08:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:08:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T03:08:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979083", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979085", + "completed_at": "2026-07-26T03:33:01Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979085", + "id": 89726979085, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMDQ", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T03:03:39Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T03:03:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T03:03:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:03:46Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T03:03:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:32:57Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T03:03:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:32:59Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T03:32:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:32:59Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T03:32:59Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979085", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979091", + "completed_at": "2026-07-26T00:42:04Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979091", + "id": 89726979091, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMEw", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T00:26:54Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:26:59Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:26:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:27:01Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:26:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:41:59Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:27:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:42:00Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:41:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:42:00Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:42:00Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979091", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979093", + "completed_at": "2026-07-26T01:01:38Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979093", + "id": 89726979093, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMFQ", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T00:43:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:43:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:43:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:43:13Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:43:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:43:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T01:01:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T01:01:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979093", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979111", + "completed_at": "2026-07-26T03:06:04Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979111", + "id": 89726979111, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMJw", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T02:08:41Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T02:08:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T02:08:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:08:48Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T02:08:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:06:00Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T02:08:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:06:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T03:06:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:06:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T03:06:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979111", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979112", + "completed_at": "2026-07-26T00:55:58Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979112", + "id": 89726979112, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMKA", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T00:26:54Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:26:59Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:26:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:27:01Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:26:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:55:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:27:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:55:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:55:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:55:55Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:55:55Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979112", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979113", + "completed_at": "2026-07-26T01:14:38Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:49Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979113", + "id": 89726979113, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMKQ", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T01:01:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T01:01:45Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T01:01:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:48Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T01:01:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:14:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T01:01:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:14:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T01:14:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:14:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T01:14:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979113", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979115", + "completed_at": "2026-07-26T01:25:28Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:50Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979115", + "id": 89726979115, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMKw", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T01:01:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T01:01:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T01:01:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:01:13Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T01:01:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:25:24Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T01:01:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:25:25Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T01:25:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:25:25Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T01:25:25Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979115", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979125", + "completed_at": "2026-07-26T02:03:18Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:50Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979125", + "id": 89726979125, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMNQ", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T01:14:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T01:14:45Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T01:14:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:14:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T01:14:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:03:14Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T01:14:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:03:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T02:03:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:03:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T02:03:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979125", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979126", + "completed_at": "2026-07-26T02:08:39Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:50Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979126", + "id": 89726979126, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMNg", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T01:25:30Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T01:25:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T01:25:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T01:25:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T01:25:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:08:35Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T01:25:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:08:36Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T02:08:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:08:36Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T02:08:36Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979126", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89726979127", + "completed_at": "2026-07-26T03:03:38Z", + "conclusion": "success", + "created_at": "2026-07-25T22:04:50Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89726979127", + "id": 89726979127, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU5CUMNw", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T02:41:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T02:41:41Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T02:41:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:41:43Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T02:41:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:03:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T02:41:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:03:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T03:03:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T03:03:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T03:03:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89726979127", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89751696242", + "completed_at": "2026-07-26T03:33:02Z", + "conclusion": "skipped", + "created_at": "2026-07-26T03:33:02Z", + "head_branch": "overlord-ii-planar-topology", + "head_sha": "5caddccfce69612e28f71e8036fa796a61332abf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176511054/job/89751696242", + "id": 89751696242, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU5Z4zcg", + "run_attempt": 1, + "run_id": 30176511054, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176511054", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-26T03:33:02Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89751696242", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676326", + "completed_at": "2026-07-25T21:58:46Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676326", + "id": 89741676326, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPJg", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T21:40:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T21:40:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T21:40:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:13Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T21:40:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:22Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-25T21:40:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:54:11Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-25T21:40:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:58:27Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-25T21:54:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:58:40Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-25T21:58:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:58:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-25T21:58:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:58:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-25T21:58:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676326", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676382", + "completed_at": "2026-07-25T21:40:53Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676382", + "id": 89741676382, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPXg", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": null, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000328, + "runner_name": "GitHub Actions 1000000328", + "started_at": "2026-07-25T21:40:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T21:40:07Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T21:40:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:09Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T21:40:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:18Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-25T21:40:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:44Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-25T21:40:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:51Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-25T21:40:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:51Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-25T21:40:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:51Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-25T21:40:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:52Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-25T21:40:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:52Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-25T21:40:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:40:52Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-25T21:40:52Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676382", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676397", + "completed_at": "2026-07-26T02:41:33Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676397", + "id": 89741676397, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPbQ", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T02:03:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T02:03:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T02:03:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:03:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T02:03:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:41:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T02:03:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:41:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T02:41:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T02:41:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T02:41:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676397", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676436", + "completed_at": "2026-07-26T00:26:52Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676436", + "id": 89741676436, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPlA", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-26T00:24:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:24:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:24:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:24:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:24:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:26:48Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:24:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:26:49Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:26:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:26:49Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:26:49Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676436", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676455", + "completed_at": "2026-07-25T23:40:58Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676455", + "id": 89741676455, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPpw", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T23:01:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T23:01:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T23:01:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:01:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T23:01:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:40:54Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T23:01:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:40:55Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T23:40:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:40:55Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T23:40:55Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676455", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676457", + "completed_at": "2026-07-25T23:46:12Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676457", + "id": 89741676457, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPqQ", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T23:05:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T23:05:45Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T23:05:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:05:48Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T23:05:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:46:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T23:05:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:46:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T23:46:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:46:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T23:46:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676457", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676479", + "completed_at": "2026-07-26T00:02:54Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676479", + "id": 89741676479, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVPvw", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T23:46:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T23:46:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T23:46:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:46:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T23:46:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:02:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T23:46:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:02:51Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:02:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:02:51Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:02:51Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676479", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676550", + "completed_at": "2026-07-25T22:22:37Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676550", + "id": 89741676550, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVQBg", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T22:04:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:05:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:05:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:05:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:05:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:22:34Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:05:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:22:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T22:22:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:22:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T22:22:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676550", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676564", + "completed_at": "2026-07-25T23:01:17Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676564", + "id": 89741676564, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVQFA", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T22:16:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:17:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:16:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:17:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:17:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:01:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:17:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:01:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T23:01:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:01:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T23:01:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676564", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676578", + "completed_at": "2026-07-26T00:25:55Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676578", + "id": 89741676578, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVQIg", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-26T00:02:56Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-26T00:03:01Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-26T00:02:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:03:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-26T00:03:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:25:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-26T00:03:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:25:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:25:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:25:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:25:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676578", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741676658", + "completed_at": "2026-07-25T23:53:39Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:17Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741676658", + "id": 89741676658, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVQcg", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T23:41:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T23:41:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T23:41:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:41:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T23:41:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:53:35Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T23:41:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:53:36Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T23:53:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:53:36Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T23:53:36Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741676658", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741682963", + "completed_at": "2026-07-25T22:23:31Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:23Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741682963", + "id": 89741682963, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVpEw", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T22:22:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:22:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:22:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:22:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:22:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:23:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:22:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:23:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T22:23:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:23:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T22:23:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741682963", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741683787", + "completed_at": "2026-07-26T00:23:43Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:24Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741683787", + "id": 89741683787, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVsSw", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T23:54:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T23:54:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T23:54:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T23:54:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T23:54:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:23:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T23:54:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:23:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-26T00:23:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-26T00:23:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-26T00:23:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741683787", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741685673", + "completed_at": "2026-07-25T22:16:52Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:26Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741685673", + "id": 89741685673, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QVzqQ", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T22:04:29Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:04:34Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:04:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:04:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:16:48Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:04:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:16:49Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T22:16:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:16:49Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T22:16:49Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741685673", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741685849", + "completed_at": "2026-07-25T22:04:25Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:26Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741685849", + "id": 89741685849, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QV0WQ", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T22:01:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:01:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:01:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:01:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:01:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:01:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:22Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T22:04:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:04:22Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T22:04:22Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741685849", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741686578", + "completed_at": "2026-07-25T22:01:14Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:26Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741686578", + "id": 89741686578, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QV3Mg", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T21:58:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T21:58:57Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T21:58:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:59:00Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T21:58:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:01:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T21:59:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:01:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T22:01:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:01:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T22:01:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741686578", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89741686609", + "completed_at": "2026-07-25T22:25:47Z", + "conclusion": "success", + "created_at": "2026-07-26T01:16:26Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89741686609", + "id": 89741686609, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU5QV3UQ", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T22:23:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T22:23:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T22:23:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:23:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T22:23:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:25:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T22:23:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:25:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T22:25:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T22:25:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T22:25:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89741686609", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89747866948", + "completed_at": "2026-07-26T02:41:34Z", + "conclusion": "skipped", + "created_at": "2026-07-26T02:41:34Z", + "head_branch": "main", + "head_sha": "485a3c6496b2e9a0369bc9dc4eae56bb12b4b65a", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30176076903/job/89747866948", + "id": 89747866948, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU5WPFRA", + "run_attempt": 2, + "run_id": 30176076903, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30176076903", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-26T02:41:34Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89747866948", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89702828824", + "completed_at": "2026-07-25T17:22:27Z", + "conclusion": "success", + "created_at": "2026-07-25T17:21:36Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89702828824", + "id": 89702828824, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAU4rSLGA", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000327, + "runner_name": "GitHub Actions 1000000327", + "started_at": "2026-07-25T17:21:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:21:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:21:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:21:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:21:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:21:49Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-25T17:21:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:17Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-25T17:21:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:24Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-25T17:22:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:24Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-25T17:22:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:24Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-25T17:22:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:25Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-25T17:22:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:26Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-25T17:22:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:22:26Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-25T17:22:26Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89702828824", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89702828852", + "completed_at": "2026-07-25T17:31:22Z", + "conclusion": "success", + "created_at": "2026-07-25T17:21:36Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89702828852", + "id": 89702828852, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAU4rSLNA", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T17:21:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:21:43Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:21:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:21:46Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:21:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:21:55Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-25T17:21:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:28:15Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-25T17:21:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:31:10Z", + "conclusion": "success", + "name": "Profile evaluation", + "number": 5, + "started_at": "2026-07-25T17:28:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:31:16Z", + "conclusion": "success", + "name": "Dead code check", + "number": 6, + "started_at": "2026-07-25T17:31:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:31:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 12, + "started_at": "2026-07-25T17:31:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:31:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 13, + "started_at": "2026-07-25T17:31:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89702828852", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667611", + "completed_at": "2026-07-25T20:51:58Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667611", + "id": 89703667611, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFXmw", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T20:51:05Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:51:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:51:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:51:13Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:51:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:51:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:51:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:51:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:51:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:51:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:51:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667611", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667615", + "completed_at": "2026-07-25T17:33:26Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667615", + "id": 89703667615, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (cross-compiled from x86_64) (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFXnw", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T17:31:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:31:28Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:31:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:31:31Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:31:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:33:22Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T17:31:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:33:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T17:33:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:33:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T17:33:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667615", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667624", + "completed_at": "2026-07-25T17:38:56Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667624", + "id": 89703667624, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFXqA", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T17:36:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:36:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:36:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:36:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:36:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:38:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T17:36:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:38:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T17:38:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:38:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T17:38:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667624", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667625", + "completed_at": "2026-07-25T20:54:15Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667625", + "id": 89703667625, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFXqQ", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T20:52:00Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:52:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:52:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:52:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:52:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:54:11Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:52:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:54:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:54:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:54:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:54:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667625", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667626", + "completed_at": "2026-07-25T17:36:32Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667626", + "id": 89703667626, + "labels": [ + "self-hosted" + ], + "name": "Build ARM (native aarch64) (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFXqg", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T17:33:28Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:33:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:33:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:33:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:33:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:36:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T17:33:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:36:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T17:36:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:36:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T17:36:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667626", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667672", + "completed_at": "2026-07-25T17:54:41Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667672", + "id": 89703667672, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX2A", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T17:31:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:31:29Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:31:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:31:31Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:31:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:54:37Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T17:31:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:54:38Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T17:54:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:54:38Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T17:54:38Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667672", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667674", + "completed_at": "2026-07-25T19:21:31Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667674", + "id": 89703667674, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX2g", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T17:38:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:39:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:39:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:39:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:39:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:21:26Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T17:39:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:21:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T19:21:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:21:28Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T19:21:28Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667674", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667675", + "completed_at": "2026-07-25T20:11:50Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667675", + "id": 89703667675, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX2w", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T19:21:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T19:21:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T19:21:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:21:43Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T19:21:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:11:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T19:21:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:11:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:11:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:11:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:11:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667675", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667680", + "completed_at": "2026-07-25T21:11:44Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667680", + "id": 89703667680, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX4A", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T20:54:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:54:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:54:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:54:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:54:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:11:40Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:54:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:11:41Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T21:11:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:11:41Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T21:11:41Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667680", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667685", + "completed_at": "2026-07-25T19:53:36Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667685", + "id": 89703667685, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX5Q", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T17:55:43Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T17:55:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T17:55:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T17:55:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T17:55:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:53:31Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T17:55:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:53:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T19:53:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:53:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T19:53:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667685", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667693", + "completed_at": "2026-07-25T20:23:54Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667693", + "id": 89703667693, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX7Q", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T19:53:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T19:53:45Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T19:53:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T19:53:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T19:53:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:23:49Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T19:53:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:23:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:23:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:23:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:23:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667693", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667694", + "completed_at": "2026-07-25T20:45:10Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667694", + "id": 89703667694, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX7g", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T20:23:56Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:24:01Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:23:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:24:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:24:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:45:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:24:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:45:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:45:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:45:08Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:45:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667694", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667698", + "completed_at": "2026-07-25T20:32:23Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667698", + "id": 89703667698, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX8g", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T20:11:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:11:56Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:11:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:11:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:11:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:32:19Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:11:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:32:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:32:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:32:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:32:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667698", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667700", + "completed_at": "2026-07-25T20:51:03Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667700", + "id": 89703667700, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFX9A", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 30, + "runner_name": "hate-filled-1", + "started_at": "2026-07-25T20:32:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:32:31Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:32:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:32:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:32:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:50:59Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:32:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:51:00Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T20:50:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:51:00Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T20:51:00Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667700", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89703667874", + "completed_at": "2026-07-25T21:05:17Z", + "conclusion": "success", + "created_at": "2026-07-25T17:31:22Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89703667874", + "id": 89703667874, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAU4sFYog", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 26, + "runner_name": "hate-filled-2", + "started_at": "2026-07-25T20:45:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-25T20:45:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-25T20:45:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T20:45:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-25T20:45:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:05:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-25T20:45:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:05:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-25T21:05:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-25T21:05:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-25T21:05:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89703667874", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/89722611837", + "completed_at": "2026-07-25T21:11:44Z", + "conclusion": "skipped", + "created_at": "2026-07-25T21:11:45Z", + "head_branch": "overlord-II", + "head_sha": "2756b0058b660594f477271143ebed3805923ad6", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/30167455387/job/89722611837", + "id": 89722611837, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAU4-JofQ", + "run_attempt": 1, + "run_id": 30167455387, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/30167455387", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-25T21:11:45Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/89722611837", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86798817454", + "completed_at": "2026-07-13T11:17:37Z", + "conclusion": "success", + "created_at": "2026-07-13T11:00:45Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86798817454", + "id": 86798817454, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAUNZzYrg", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:00:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:00:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:00:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:00:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:00:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:00:50Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-13T11:00:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:17:31Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-13T11:00:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:17:32Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-13T11:17:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:17:32Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-13T11:17:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:17:32Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-13T11:17:32Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86798817454", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86798817466", + "completed_at": "2026-07-13T11:01:34Z", + "conclusion": "success", + "created_at": "2026-07-13T11:00:45Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86798817466", + "id": 86798817466, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAUNZzYug", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000182, + "runner_name": "GitHub Actions 1000000182", + "started_at": "2026-07-13T11:00:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:00:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:00:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:00:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:00:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:00:58Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-13T11:00:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:24Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-13T11:00:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:31Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-13T11:01:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:31Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-13T11:01:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:31Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-13T11:01:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:32Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-13T11:01:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-13T11:01:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:01:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-13T11:01:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86798817466", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102444", + "completed_at": "2026-07-13T11:36:33Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102444", + "id": 86802102444, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc74rA", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:35:29Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:35:32Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:35:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:35:33Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:35:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:36:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:35:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:36:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:36:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:36:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:36:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102444", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102455", + "completed_at": "2026-07-13T11:44:33Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102455", + "id": 86802102455, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc74tw", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:44:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:44:16Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:44:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:17Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:44:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:44:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:44:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:44:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102455", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102467", + "completed_at": "2026-07-13T11:35:27Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102467", + "id": 86802102467, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc74ww", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:34:39Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:34:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:34:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:34:43Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:34:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:35:24Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:34:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:35:25Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:35:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:35:25Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:35:25Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102467", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102471", + "completed_at": "2026-07-13T11:44:12Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102471", + "id": 86802102471, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc74xw", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:43:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:43:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:43:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:43:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:43:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:09Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:43:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:44:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:44:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102471", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102495", + "completed_at": "2026-07-13T11:43:05Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102495", + "id": 86802102495, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc743w", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:42:03Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:42:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:42:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:42:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:42:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:43:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:42:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:43:02Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:43:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:43:02Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:43:02Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102495", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102499", + "completed_at": "2026-07-13T11:34:37Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102499", + "id": 86802102499, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc744w", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:17:39Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:17:41Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:17:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:17:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:17:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:34:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:17:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:34:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:34:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:34:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:34:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102499", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102527", + "completed_at": "2026-07-13T11:47:58Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102527", + "id": 86802102527, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc74_w", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:47:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:47:16Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:47:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:17Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:47:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:47:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:55Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:47:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:55Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:47:55Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102527", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102539", + "completed_at": "2026-07-13T11:40:47Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102539", + "id": 86802102539, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75Cw", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:39:59Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:40:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:40:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:40:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:40:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:40:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:40:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:40:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:40:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:40:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:40:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102539", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102545", + "completed_at": "2026-07-13T11:42:01Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102545", + "id": 86802102545, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75EQ", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:40:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:40:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:40:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:40:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:40:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:41:58Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:40:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:41:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:41:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:41:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:41:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102545", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102548", + "completed_at": "2026-07-13T11:47:12Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102548", + "id": 86802102548, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75FA", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:44:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:44:37Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:44:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:44:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:44:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:44:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:47:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:47:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:47:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102548", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102551", + "completed_at": "2026-07-13T11:37:21Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102551", + "id": 86802102551, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75Fw", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:36:35Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:36:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:36:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:36:39Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:36:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:37:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:36:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:37:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:37:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:37:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:37:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102551", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102552", + "completed_at": "2026-07-13T11:49:33Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102552", + "id": 86802102552, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75GA", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:48:50Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:48:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:48:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:48:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:48:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:49:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:48:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:49:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:49:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:49:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:49:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102552", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102556", + "completed_at": "2026-07-13T11:39:57Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102556", + "id": 86802102556, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75HA", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:37:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:37:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:37:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:37:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:37:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:39:54Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:37:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:39:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:39:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:39:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:39:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102556", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102559", + "completed_at": "2026-07-13T11:48:49Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102559", + "id": 86802102559, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75Hw", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:47:59Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:48:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:48:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:48:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:48:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:48:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:48:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:48:45Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:48:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:48:45Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:48:45Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102559", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86802102582", + "completed_at": "2026-07-13T11:53:12Z", + "conclusion": "success", + "created_at": "2026-07-13T11:17:37Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86802102582", + "id": 86802102582, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAUNc75Ng", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T11:49:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T11:49:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T11:49:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:49:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T11:49:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:53:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T11:49:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:53:08Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T11:53:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T11:53:08Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T11:53:08Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86802102582", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86808839416", + "completed_at": "2026-07-13T11:53:12Z", + "conclusion": "skipped", + "created_at": "2026-07-13T11:53:13Z", + "head_branch": "overlord-II", + "head_sha": "2fc77fa82505a1eab2fe65911b6cb81de74d15d8", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29244736652/job/86808839416", + "id": 86808839416, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAUNjXE-A", + "run_attempt": 1, + "run_id": 29244736652, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29244736652", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-13T11:53:13Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86808839416", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787476647", + "completed_at": "2026-07-13T10:03:25Z", + "conclusion": "success", + "created_at": "2026-07-13T10:01:00Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787476647", + "id": 86787476647, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAUNO_Mpw", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:01:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:01:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:01:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:01:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:06Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-13T10:01:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:03:20Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-13T10:01:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:03:21Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-13T10:03:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:03:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-13T10:03:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:03:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-13T10:03:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787476647", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787476707", + "completed_at": "2026-07-13T10:01:47Z", + "conclusion": "success", + "created_at": "2026-07-13T10:01:00Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787476707", + "id": 86787476707, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAUNO_M4w", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000181, + "runner_name": "GitHub Actions 1000000181", + "started_at": "2026-07-13T10:01:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:01:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:01:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:01:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:14Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-13T10:01:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:37Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-13T10:01:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:44Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-13T10:01:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:44Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-13T10:01:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:44Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-13T10:01:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:45Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-13T10:01:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:45Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-13T10:01:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:01:45Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-13T10:01:45Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787476707", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954232", + "completed_at": "2026-07-13T10:05:59Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954232", + "id": 86787954232, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWOA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:05:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:05:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:05:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:05:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:05:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:05:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:05:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954232", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954247", + "completed_at": "2026-07-13T10:04:08Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954247", + "id": 86787954247, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWRw", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:03:27Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:03:29Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:03:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:03:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:03:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:04Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:03:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:04:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:04:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954247", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954262", + "completed_at": "2026-07-13T10:07:14Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954262", + "id": 86787954262, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWVg", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:06:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:06:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:06:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:06:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:06:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:07:11Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:06:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:07:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:07:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:07:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:07:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954262", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954272", + "completed_at": "2026-07-13T10:36:21Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954272", + "id": 86787954272, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWYA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:35:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:35:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:35:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:35:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:35:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:35:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:36:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:36:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954272", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954276", + "completed_at": "2026-07-13T10:06:13Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954276", + "id": 86787954276, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWZA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:06:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:06:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:06:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:06:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:06:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:06:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:06:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:06:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:06:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:06:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:06:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954276", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954279", + "completed_at": "2026-07-13T10:04:55Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954279", + "id": 86787954279, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWZw", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:04:32Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:04:34Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:04:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:35Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:04:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:51Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:04:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:51Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:04:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:51Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:04:51Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954279", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954295", + "completed_at": "2026-07-13T10:32:27Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954295", + "id": 86787954295, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWdw", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:07:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:07:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:07:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:07:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:07:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:32:23Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:07:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:32:23Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:32:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:32:23Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:32:23Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954295", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954296", + "completed_at": "2026-07-13T10:34:01Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954296", + "id": 86787954296, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWeA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:33:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:33:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:33:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:33:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:57Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:33:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:33:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:33:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954296", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954298", + "completed_at": "2026-07-13T10:05:18Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954298", + "id": 86787954298, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWeg", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:04:56Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:04:58Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:04:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:04:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:16Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:04:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:05:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:05:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:05:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954298", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954309", + "completed_at": "2026-07-13T10:33:13Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954309", + "id": 86787954309, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWhQ", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:32:28Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:32:31Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:32:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:32:32Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:32:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:32:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:33:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:33:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954309", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954314", + "completed_at": "2026-07-13T10:04:31Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954314", + "id": 86787954314, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWig", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:04:09Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:04:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:04:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:04:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:28Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:04:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:28Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:04:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:04:28Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:04:28Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954314", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954317", + "completed_at": "2026-07-13T10:33:32Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954317", + "id": 86787954317, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWjQ", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:33:14Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:33:16Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:33:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:17Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:33:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:33:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:33:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:33:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:33:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954317", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954328", + "completed_at": "2026-07-13T10:34:32Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954328", + "id": 86787954328, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWmA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:34:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:34:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:34:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:34:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:34:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:34:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:34:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:34:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:34:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:34:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:34:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954328", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954332", + "completed_at": "2026-07-13T10:36:55Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954332", + "id": 86787954332, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWnA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:36:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:36:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:36:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:36:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:36:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:36:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:36:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:36:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954332", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86787954357", + "completed_at": "2026-07-13T10:35:46Z", + "conclusion": "success", + "created_at": "2026-07-13T10:03:26Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86787954357", + "id": 86787954357, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAUNPcWtQ", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T10:34:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T10:34:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T10:34:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:34:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T10:34:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:35:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T10:34:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:35:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T10:35:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T10:35:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T10:35:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86787954357", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86794404448", + "completed_at": "2026-07-13T10:36:55Z", + "conclusion": "skipped", + "created_at": "2026-07-13T10:36:56Z", + "head_branch": "overlord-II", + "head_sha": "08ca2250ae6570be179087ea546b5f07f7f06ed9", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29241222192/job/86794404448", + "id": 86794404448, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAUNVmCYA", + "run_attempt": 1, + "run_id": 29241222192, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29241222192", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-13T10:36:56Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86794404448", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86772818124", + "completed_at": "2026-07-13T08:48:09Z", + "conclusion": "success", + "created_at": "2026-07-13T08:47:22Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86772818124", + "id": 86772818124, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAUNBAgzA", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000179, + "runner_name": "GitHub Actions 1000000179", + "started_at": "2026-07-13T08:47:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:47:26Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:47:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:47:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:47:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:47:36Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-13T08:47:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:47:59Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-13T08:47:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:05Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-13T08:47:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:05Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-13T08:48:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:05Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-13T08:48:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:06Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-13T08:48:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:06Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-13T08:48:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:06Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-13T08:48:06Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86772818124", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86772818182", + "completed_at": "2026-07-13T08:48:46Z", + "conclusion": "success", + "created_at": "2026-07-13T08:47:22Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86772818182", + "id": 86772818182, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAUNBAhBg", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:47:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:47:26Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:47:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:47:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:47:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:47:28Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-13T08:47:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:41Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-13T08:47:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:42Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-13T08:48:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-13T08:48:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-13T08:48:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86772818182", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079363", + "completed_at": "2026-07-13T08:49:27Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079363", + "id": 86773079363, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdQw", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:48:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:48:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:48:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:48:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:48:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:49:24Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:48:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:49:24Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:49:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:49:24Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:49:24Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079363", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079381", + "completed_at": "2026-07-13T08:50:08Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079381", + "id": 86773079381, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdVQ", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:49:29Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:49:31Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:49:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:49:31Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:49:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:05Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:49:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:50:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:50:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079381", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079406", + "completed_at": "2026-07-13T08:50:54Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079406", + "id": 86773079406, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdbg", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:50:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:50:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:50:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:50:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:50:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:51Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:50:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:51Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:50:51Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079406", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079430", + "completed_at": "2026-07-13T08:55:16Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079430", + "id": 86773079430, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdhg", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:54:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:54:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:54:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:54:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:54:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:13Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:55:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:13Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:55:13Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079430", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079439", + "completed_at": "2026-07-13T08:50:40Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079439", + "id": 86773079439, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdjw", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:50:09Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:50:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:50:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:50:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:37Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:50:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:37Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:50:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:37Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:50:37Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079439", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079441", + "completed_at": "2026-07-13T08:52:34Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079441", + "id": 86773079441, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdkQ", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:52:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:52:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:52:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:52:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:31Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:52:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:52:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:52:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079441", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079451", + "completed_at": "2026-07-13T08:53:32Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079451", + "id": 86773079451, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdmw", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:53:00Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:53:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:53:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:53:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:53:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:53:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:53:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079451", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079452", + "completed_at": "2026-07-13T08:53:55Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079452", + "id": 86773079452, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdnA", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:53:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:53:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:53:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:53:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:53:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:52Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:53:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:52Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:53:52Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079452", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079461", + "completed_at": "2026-07-13T08:52:14Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079461", + "id": 86773079461, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdpQ", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:51:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:51:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:51:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:51:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:51:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:12Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:51:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:52:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:52:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079461", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079489", + "completed_at": "2026-07-13T08:55:53Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079489", + "id": 86773079489, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQdwQ", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:55:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:55:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:55:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:20Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:55:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:55:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:55:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:55:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079489", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079511", + "completed_at": "2026-07-13T08:56:24Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079511", + "id": 86773079511, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQd1w", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:55:54Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:55:57Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:55:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:55:57Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:55:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:56:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:55:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:56:22Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:56:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:56:22Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:56:22Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079511", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079519", + "completed_at": "2026-07-13T08:52:58Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079519", + "id": 86773079519, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQd3w", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:52:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:52:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:52:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:39Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:52:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:52:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:55Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:52:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:52:55Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:52:55Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079519", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079523", + "completed_at": "2026-07-13T08:54:42Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079523", + "id": 86773079523, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQd4w", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:54:21Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:54:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:54:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:54:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:40Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:54:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:54:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:54:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079523", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079532", + "completed_at": "2026-07-13T08:51:22Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079532", + "id": 86773079532, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQd7A", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:50:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:50:58Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:50:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:50:58Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:50:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:51:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:50:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:51:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:51:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:51:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:51:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079532", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86773079589", + "completed_at": "2026-07-13T08:54:19Z", + "conclusion": "success", + "created_at": "2026-07-13T08:48:46Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86773079589", + "id": 86773079589, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAUNBQeJQ", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-13T08:53:56Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-13T08:53:58Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-13T08:53:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:53:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-13T08:53:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:16Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-13T08:53:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-13T08:54:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-13T08:54:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-13T08:54:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86773079589", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86774532665", + "completed_at": "2026-07-13T08:56:25Z", + "conclusion": "skipped", + "created_at": "2026-07-13T08:56:25Z", + "head_branch": "overlord-II", + "head_sha": "e0bd6982c51a584625aea67aa21a87fee1b264b5", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29236667781/job/86774532665", + "id": 86774532665, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAUNCpKOQ", + "run_attempt": 1, + "run_id": 29236667781, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29236667781", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-13T08:56:25Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86774532665", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640537803", + "completed_at": "2026-07-12T10:26:50Z", + "conclusion": "success", + "created_at": "2026-07-12T10:25:51Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640537803", + "id": 86640537803, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAULC2wyw", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000178, + "runner_name": "GitHub Actions 1000000178", + "started_at": "2026-07-12T10:25:53Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:25:56Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:25:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:25:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:25:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:13Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-12T10:25:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:41Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-12T10:26:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:47Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-12T10:26:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:47Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-12T10:26:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:47Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-12T10:26:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:48Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-12T10:26:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-12T10:26:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:26:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-12T10:26:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640537803", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640537812", + "completed_at": "2026-07-12T10:28:02Z", + "conclusion": "success", + "created_at": "2026-07-12T10:25:51Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640537812", + "id": 86640537812, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAULC2w1A", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:25:53Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:25:55Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:25:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:25:56Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:25:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:25:57Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-12T10:25:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:27:57Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-12T10:25:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:27:58Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-12T10:27:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:27:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-12T10:27:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:27:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-12T10:27:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640537812", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640683933", + "completed_at": "2026-07-12T10:29:58Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640683933", + "id": 86640683933, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_rnQ", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:29:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:29:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:29:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:29:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:29:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:29:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:29:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640683933", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640683935", + "completed_at": "2026-07-12T10:29:45Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640683935", + "id": 86640683935, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_rnw", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:28:52Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:28:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:28:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:28:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:28:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:28:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:29:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:29:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:29:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640683935", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640683937", + "completed_at": "2026-07-12T10:28:51Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640683937", + "id": 86640683937, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_roQ", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:28:04Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:28:06Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:28:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:28:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:28:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:28:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:28:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:28:47Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:28:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:28:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:28:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640683937", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640683941", + "completed_at": "2026-07-12T10:30:22Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640683941", + "id": 86640683941, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_rpQ", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:30:00Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:30:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:30:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:30:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:30:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:30:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:30:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640683941", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640683956", + "completed_at": "2026-07-12T10:33:45Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640683956", + "id": 86640683956, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_rtA", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:32:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:32:59Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:32:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:59Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:32:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:33:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:32:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:33:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:33:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:33:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:33:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640683956", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684003", + "completed_at": "2026-07-12T10:30:47Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684003", + "id": 86640684003, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r4w", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:30:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:30:26Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:30:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:30:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:44Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:30:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:45Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:30:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:45Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:30:45Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684003", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684005", + "completed_at": "2026-07-12T10:31:17Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684005", + "id": 86640684005, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r5Q", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:30:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:30:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:30:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:30:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:30:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:14Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:30:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:31:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:31:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684005", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684008", + "completed_at": "2026-07-12T10:34:20Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684008", + "id": 86640684008, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r6A", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:33:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:33:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:33:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:33:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:33:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:33:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:17Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:34:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:17Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:34:17Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684008", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684010", + "completed_at": "2026-07-12T10:32:55Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684010", + "id": 86640684010, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r6g", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:32:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:32:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:32:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:32:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:52Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:32:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:52Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:32:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:52Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:32:52Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684010", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684012", + "completed_at": "2026-07-12T10:32:22Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684012", + "id": 86640684012, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r7A", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:31:44Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:31:46Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:31:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:47Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:31:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:19Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:31:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:32:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:32:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:32:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684012", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684013", + "completed_at": "2026-07-12T10:31:43Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684013", + "id": 86640684013, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r7Q", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:31:18Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:31:20Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:31:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:21Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:31:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:40Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:31:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:40Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:31:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:31:40Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:31:40Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684013", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684014", + "completed_at": "2026-07-12T10:35:22Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684014", + "id": 86640684014, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r7g", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:34:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:35:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:34:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:35:01Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:35:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:35:19Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:35:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:35:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:35:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:35:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:35:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684014", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684018", + "completed_at": "2026-07-12T10:34:56Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684018", + "id": 86640684018, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r8g", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:34:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:34:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:34:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:34:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:54Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:34:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:34:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:34:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:34:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684018", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684031", + "completed_at": "2026-07-12T10:36:17Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684031", + "id": 86640684031, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_r_w", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:35:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:35:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:35:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:35:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:35:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:14Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:35:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:14Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:36:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:14Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:36:14Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684031", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86640684042", + "completed_at": "2026-07-12T10:36:44Z", + "conclusion": "success", + "created_at": "2026-07-12T10:28:03Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86640684042", + "id": 86640684042, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAULC_sCg", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T10:36:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T10:36:21Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T10:36:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T10:36:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T10:36:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:41Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T10:36:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T10:36:41Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T10:36:41Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86640684042", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86641343788", + "completed_at": "2026-07-12T10:36:44Z", + "conclusion": "skipped", + "created_at": "2026-07-12T10:36:45Z", + "head_branch": "overlord-II", + "head_sha": "238896f76cc91c7307f6047864588e677cae055e", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29189106889/job/86641343788", + "id": 86641343788, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAULDn9LA", + "run_attempt": 1, + "run_id": 29189106889, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29189106889", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-12T10:36:45Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86641343788", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630094394", + "completed_at": "2026-07-12T08:05:35Z", + "conclusion": "success", + "created_at": "2026-07-12T08:04:50Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630094394", + "id": 86630094394, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAUK45WOg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000177, + "runner_name": "GitHub Actions 1000000177", + "started_at": "2026-07-12T08:04:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:04:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:04:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:04:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:04:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:02Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-12T08:04:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:26Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-12T08:05:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:32Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-12T08:05:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:32Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-12T08:05:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:32Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-12T08:05:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:33Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-12T08:05:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:34Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-12T08:05:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:05:34Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-12T08:05:34Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630094394", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630094420", + "completed_at": "2026-07-12T08:07:14Z", + "conclusion": "success", + "created_at": "2026-07-12T08:04:50Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630094420", + "id": 86630094420, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAUK45WVA", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:04:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:04:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:04:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:04:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:04:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:04:55Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-12T08:04:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:09Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-12T08:04:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:10Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-12T08:07:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-12T08:07:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-12T08:07:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630094420", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273050", + "completed_at": "2026-07-12T08:10:57Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273050", + "id": 86630273050, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQGg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:10:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:10:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:10:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:20Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:10:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:54Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:10:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:10:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:10:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273050", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273058", + "completed_at": "2026-07-12T08:07:56Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273058", + "id": 86630273058, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQIg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:07:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:07:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:07:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:07:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:07:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:07:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:07:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:07:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273058", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273067", + "completed_at": "2026-07-12T08:08:09Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273067", + "id": 86630273067, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQKw", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:07:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:08:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:07:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:01Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:08:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:08:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:08:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:08:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273067", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273073", + "completed_at": "2026-07-12T08:13:06Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273073", + "id": 86630273073, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQMQ", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:12:48Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:12:50Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:12:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:51Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:12:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:12:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:03Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:13:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:03Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:13:03Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273073", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273077", + "completed_at": "2026-07-12T08:08:44Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273077", + "id": 86630273077, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQNQ", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:08:11Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:08:13Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:08:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:14Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:08:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:08:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:41Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:08:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:41Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:08:41Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273077", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273085", + "completed_at": "2026-07-12T08:11:32Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273085", + "id": 86630273085, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQPQ", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:10:59Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:11:01Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:11:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:02Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:11:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:11:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:11:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:11:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273085", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273087", + "completed_at": "2026-07-12T08:09:21Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273087", + "id": 86630273087, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQPw", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:08:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:08:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:08:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:08:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:08:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:09:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:08:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:09:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:09:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:09:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:09:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273087", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273091", + "completed_at": "2026-07-12T08:12:47Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273091", + "id": 86630273091, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQQw", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:12:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:12:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:12:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:12:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:44Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:12:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:12:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:12:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273091", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273092", + "completed_at": "2026-07-12T08:13:30Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273092", + "id": 86630273092, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQRA", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:13:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:13:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:13:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:13:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:26Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:13:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:27Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:13:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:27Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:13:27Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273092", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273096", + "completed_at": "2026-07-12T08:11:59Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273096", + "id": 86630273096, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQSA", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:11:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:11:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:11:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:11:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:11:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:11:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:11:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:11:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273096", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273100", + "completed_at": "2026-07-12T08:10:15Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273100", + "id": 86630273100, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQTA", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:09:23Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:09:25Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:09:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:09:26Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:09:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:12Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:09:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:10:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:10:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:10:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273100", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273102", + "completed_at": "2026-07-12T08:12:23Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273102", + "id": 86630273102, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQTg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:12:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:12:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:12:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:12:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:12:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:12:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:12:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:12:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273102", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273106", + "completed_at": "2026-07-12T08:14:01Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273106", + "id": 86630273106, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQUg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:13:31Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:13:33Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:13:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:34Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:13:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:58Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:13:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:58Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:13:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:13:58Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:13:58Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273106", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273126", + "completed_at": "2026-07-12T08:14:57Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273126", + "id": 86630273126, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQZg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:14:35Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:14:37Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:14:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:14:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:55Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:14:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:55Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:14:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:55Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:14:55Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273126", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630273130", + "completed_at": "2026-07-12T08:14:34Z", + "conclusion": "success", + "created_at": "2026-07-12T08:07:15Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630273130", + "id": 86630273130, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAUK5EQag", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-12T08:14:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-12T08:14:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-12T08:14:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-12T08:14:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-12T08:14:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-12T08:14:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-12T08:14:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-12T08:14:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630273130", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86630839730", + "completed_at": "2026-07-12T08:14:58Z", + "conclusion": "skipped", + "created_at": "2026-07-12T08:14:58Z", + "head_branch": "overlord-II", + "head_sha": "0902092d63f1d8a1e1b219fd14aa0d90ce238acf", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29185260977/job/86630839730", + "id": 86630839730, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAUK5m1sg", + "run_attempt": 1, + "run_id": 29185260977, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29185260977", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-12T08:14:58Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86630839730", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86581937054", + "completed_at": "2026-07-11T20:28:42Z", + "conclusion": "success", + "created_at": "2026-07-11T20:28:02Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86581937054", + "id": 86581937054, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAUKK-Dng", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000175, + "runner_name": "GitHub Actions 1000000175", + "started_at": "2026-07-11T20:28:03Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:28:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:28:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:28:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:13Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-11T20:28:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:34Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-11T20:28:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:39Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-11T20:28:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:40Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-11T20:28:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:40Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-11T20:28:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:41Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-11T20:28:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:41Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-11T20:28:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:41Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-11T20:28:41Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86581937054", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86581937099", + "completed_at": "2026-07-11T20:30:14Z", + "conclusion": "success", + "created_at": "2026-07-11T20:28:02Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86581937099", + "id": 86581937099, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAUKK-Dyw", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:28:03Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:28:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:28:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:07Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:28:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:28:08Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-11T20:28:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:30:09Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-11T20:28:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:30:10Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-11T20:30:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:30:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-11T20:30:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:30:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-11T20:30:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86581937099", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124839", + "completed_at": "2026-07-11T20:31:23Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124839", + "id": 86582124839, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhJw", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:31:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:31:08Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:31:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:09Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:31:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:31:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:31:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:31:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124839", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124840", + "completed_at": "2026-07-11T20:31:36Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124840", + "id": 86582124840, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhKA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:31:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:31:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:31:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:31:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:31:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:31:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:31:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124840", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124841", + "completed_at": "2026-07-11T20:32:49Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124841", + "id": 86582124841, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhKQ", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:32:00Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:32:02Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:32:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:32:03Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:32:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:32:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:32:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:32:47Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:32:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:32:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:32:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124841", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124849", + "completed_at": "2026-07-11T20:35:00Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124849", + "id": 86582124849, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhMQ", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:34:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:34:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:34:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:17Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:34:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:57Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:34:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:34:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:34:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124849", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124850", + "completed_at": "2026-07-11T20:31:05Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124850", + "id": 86582124850, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhMg", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:30:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:30:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:30:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:30:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:30:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:30:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:02Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:31:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:02Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:31:02Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124850", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124876", + "completed_at": "2026-07-11T20:31:59Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124876", + "id": 86582124876, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhTA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:31:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:31:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:31:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:31:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:56Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:31:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:31:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:31:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:31:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124876", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124880", + "completed_at": "2026-07-11T20:33:23Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124880", + "id": 86582124880, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhUA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:32:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:32:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:32:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:32:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:32:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:32:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:20Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:33:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:20Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:33:20Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124880", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124883", + "completed_at": "2026-07-11T20:37:51Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124883", + "id": 86582124883, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhUw", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:37:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:37:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:37:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:37:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:48Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:37:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:48Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:37:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:48Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:37:48Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124883", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124892", + "completed_at": "2026-07-11T20:34:13Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124892", + "id": 86582124892, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhXA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:33:52Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:33:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:33:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:33:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:10Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:33:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:10Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:34:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:34:10Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:34:10Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124892", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124904", + "completed_at": "2026-07-11T20:36:56Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124904", + "id": 86582124904, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhaA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:36:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:36:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:36:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:36:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:54Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:36:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:54Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:36:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:54Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:36:54Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124904", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124908", + "completed_at": "2026-07-11T20:38:24Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124908", + "id": 86582124908, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhbA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:37:52Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:37:54Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:37:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:55Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:37:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:38:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:37:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:38:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:38:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:38:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:38:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124908", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124939", + "completed_at": "2026-07-11T20:33:50Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124939", + "id": 86582124939, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhiw", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:33:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:33:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:33:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:33:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:33:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:47Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:33:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:33:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:33:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124939", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124942", + "completed_at": "2026-07-11T20:37:20Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124942", + "id": 86582124942, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhjg", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:36:58Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:37:00Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:36:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:01Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:37:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:37:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:17Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:37:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:37:17Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:37:17Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124942", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124946", + "completed_at": "2026-07-11T20:35:24Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124946", + "id": 86582124946, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhkg", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:35:02Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:35:04Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:35:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:35:05Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:35:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:35:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:35:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:35:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:35:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:35:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:35:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124946", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582124952", + "completed_at": "2026-07-11T20:36:21Z", + "conclusion": "success", + "created_at": "2026-07-11T20:30:15Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582124952", + "id": 86582124952, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAUKLJhmA", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T20:35:26Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T20:35:28Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T20:35:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:35:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T20:35:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T20:35:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T20:36:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T20:36:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T20:36:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582124952", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86582793589", + "completed_at": "2026-07-11T20:38:24Z", + "conclusion": "skipped", + "created_at": "2026-07-11T20:38:25Z", + "head_branch": "overlord-II", + "head_sha": "db90b5d6bd8a17cdccc3b995bc803cead52ed342", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29167077746/job/86582793589", + "id": 86582793589, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAUKLyVdQ", + "run_attempt": 1, + "run_id": 29167077746, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29167077746", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-11T20:38:25Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86582793589", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528766721", + "completed_at": "2026-07-11T08:40:18Z", + "conclusion": "success", + "created_at": "2026-07-11T08:39:31Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528766721", + "id": 86528766721, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAUJYQzAQ", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000174, + "runner_name": "GitHub Actions 1000000174", + "started_at": "2026-07-11T08:39:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:39:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:39:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:39:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:39:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:39:47Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-11T08:39:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:11Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-11T08:39:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:14Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-11T08:40:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:14Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-11T08:40:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:14Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-11T08:40:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:15Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-11T08:40:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-11T08:40:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:40:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-11T08:40:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528766721", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528766757", + "completed_at": "2026-07-11T08:42:10Z", + "conclusion": "success", + "created_at": "2026-07-11T08:39:31Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528766757", + "id": 86528766757, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAUJYQzJQ", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:39:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:39:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:39:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:39:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:39:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:39:39Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-11T08:39:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:05Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-11T08:39:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:06Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-11T08:42:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:06Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-11T08:42:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:06Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-11T08:42:06Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528766757", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967240", + "completed_at": "2026-07-11T08:43:56Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967240", + "id": 86528967240, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCSA", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:43:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:43:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:43:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:43:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:43:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:43:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:43:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967240", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967241", + "completed_at": "2026-07-11T08:43:36Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967241", + "id": 86528967241, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCSQ", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:43:24Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:43:26Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:43:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:27Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:43:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:43:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:43:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:43:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967241", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967242", + "completed_at": "2026-07-11T08:43:22Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967242", + "id": 86528967242, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCSg", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:42:36Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:42:38Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:42:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:39Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:42:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:19Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:42:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:19Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:43:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:43:19Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:43:19Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967242", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967248", + "completed_at": "2026-07-11T08:46:09Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967248", + "id": 86528967248, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCUA", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:45:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:45:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:45:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:45:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:45:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:06Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:45:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:06Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:46:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:06Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:46:06Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967248", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967249", + "completed_at": "2026-07-11T08:42:35Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967249", + "id": 86528967249, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCUQ", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:42:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:42:14Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:42:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:15Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:42:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:32Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:42:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:32Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:42:32Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:42:32Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:42:32Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967249", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967254", + "completed_at": "2026-07-11T08:44:48Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967254", + "id": 86528967254, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCVg", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:43:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:43:59Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:43:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:44:00Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:43:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:44:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:44:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:44:46Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:44:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:44:46Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:44:46Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967254", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967264", + "completed_at": "2026-07-11T08:47:20Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967264", + "id": 86528967264, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCYA", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:46:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:46:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:46:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:46:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:47:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:46:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:47:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:47:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:47:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:47:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967264", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967267", + "completed_at": "2026-07-11T08:48:41Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967267", + "id": 86528967267, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCYw", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:48:16Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:48:18Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:48:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:19Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:48:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:48:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:38Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:48:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:38Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:48:38Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967267", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967269", + "completed_at": "2026-07-11T08:45:18Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967269", + "id": 86528967269, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCZQ", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:44:50Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:44:52Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:44:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:44:53Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:44:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:45:16Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:44:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:45:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:45:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:45:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:45:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967269", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967270", + "completed_at": "2026-07-11T08:49:40Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967270", + "id": 86528967270, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCZg", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:49:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:49:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:49:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:49:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:37Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:49:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:37Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:49:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:37Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:49:37Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967270", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967271", + "completed_at": "2026-07-11T08:50:19Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967271", + "id": 86528967271, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCZw", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:49:41Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:49:43Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:49:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:44Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:49:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:49:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:17Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:50:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:17Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:50:17Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967271", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967283", + "completed_at": "2026-07-11T08:49:06Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967283", + "id": 86528967283, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCcw", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:48:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:48:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:48:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:48:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:48:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:03Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:49:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:49:03Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:49:03Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967283", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967285", + "completed_at": "2026-07-11T08:48:15Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967285", + "id": 86528967285, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCdQ", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:47:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:47:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:47:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:47:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:47:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:11Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:47:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:48:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:48:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:48:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967285", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967286", + "completed_at": "2026-07-11T08:46:44Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967286", + "id": 86528967286, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCdg", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:46:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:46:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:46:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:13Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:46:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:46:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:46:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:46:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:46:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967286", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86528967328", + "completed_at": "2026-07-11T08:50:45Z", + "conclusion": "success", + "created_at": "2026-07-11T08:42:10Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86528967328", + "id": 86528967328, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAUJYdCoA", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 24, + "runner_name": "hate-filled", + "started_at": "2026-07-11T08:50:21Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-11T08:50:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-11T08:50:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-11T08:50:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-11T08:50:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-11T08:50:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-11T08:50:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-11T08:50:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86528967328", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/86529562768", + "completed_at": "2026-07-11T08:50:45Z", + "conclusion": "skipped", + "created_at": "2026-07-11T08:50:45Z", + "head_branch": "overlord-II", + "head_sha": "6844f62ebb8fbf36a5da0af4d42748144fa96a69", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/29146463682/job/86529562768", + "id": 86529562768, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAUJZBYkA", + "run_attempt": 1, + "run_id": 29146463682, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/29146463682", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-11T08:50:45Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/86529562768", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210285774", + "completed_at": "2026-07-05T09:21:01Z", + "conclusion": "success", + "created_at": "2026-07-05T09:19:36Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210285774", + "id": 85210285774, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAT1u3Gzg", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:19:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:19:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:19:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:19:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:19:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:19:42Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-05T09:19:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:55Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-05T09:19:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:56Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-05T09:20:55Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:56Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-05T09:20:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:56Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-05T09:20:56Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210285774", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210285777", + "completed_at": "2026-07-05T09:20:17Z", + "conclusion": "success", + "created_at": "2026-07-05T09:19:36Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210285777", + "id": 85210285777, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAT1u3G0Q", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000173, + "runner_name": "GitHub Actions 1000000173", + "started_at": "2026-07-05T09:19:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:19:39Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:19:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:19:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:19:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:19:48Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-05T09:19:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:11Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-05T09:19:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:14Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-05T09:20:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:14Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-05T09:20:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:14Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-05T09:20:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:15Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-05T09:20:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:16Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-05T09:20:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:20:16Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-05T09:20:16Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210285777", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382206", + "completed_at": "2026-07-05T09:21:32Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382206", + "id": 85210382206, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_fg", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:21:03Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:21:05Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:21:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:21:06Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:21:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:21:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:21:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:21:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:21:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:21:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:21:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382206", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382208", + "completed_at": "2026-07-05T09:22:44Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382208", + "id": 85210382208, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_gA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:22:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:22:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:22:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:22:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:22:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:42Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:22:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:42Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:22:42Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382208", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382230", + "completed_at": "2026-07-05T09:26:46Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382230", + "id": 85210382230, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_lg", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:26:19Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:26:21Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:26:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:22Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:26:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:43Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:26:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:26:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:26:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382230", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382232", + "completed_at": "2026-07-05T09:27:34Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382232", + "id": 85210382232, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_mA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:27:17Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:27:19Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:27:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:20Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:27:19Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:31Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:27:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:31Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:27:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:31Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:27:31Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382232", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382240", + "completed_at": "2026-07-05T09:25:19Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382240", + "id": 85210382240, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_oA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:24:57Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:24:59Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:24:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:00Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:24:59Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:15Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:25:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:25:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:25:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382240", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382250", + "completed_at": "2026-07-05T09:28:04Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382250", + "id": 85210382250, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_qg", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:27:35Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:27:37Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:27:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:38Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:27:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:28:02Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:27:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:28:02Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:28:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:28:02Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:28:02Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382250", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382256", + "completed_at": "2026-07-05T09:24:32Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382256", + "id": 85210382256, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_sA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:24:01Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:24:03Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:24:02Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:04Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:24:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:24:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:24:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:24:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382256", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382263", + "completed_at": "2026-07-05T09:27:15Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382263", + "id": 85210382263, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_tw", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:26:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:26:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:26:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:50Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:26:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:13Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:26:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:13Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:27:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:27:13Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:27:13Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382263", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382266", + "completed_at": "2026-07-05T09:25:45Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382266", + "id": 85210382266, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_ug", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:25:20Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:25:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:25:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:23Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:25:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:25:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:25:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:25:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382266", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382268", + "completed_at": "2026-07-05T09:23:36Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382268", + "id": 85210382268, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_vA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:22:46Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:22:48Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:22:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:22:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:22:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:23:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:23:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382268", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382269", + "completed_at": "2026-07-05T09:22:32Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382269", + "id": 85210382269, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_vQ", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:22:10Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:22:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:22:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:22:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:29Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:22:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:29Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:22:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:29Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:22:29Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382269", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382270", + "completed_at": "2026-07-05T09:22:08Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382270", + "id": 85210382270, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_vg", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:21:33Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:21:35Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:21:34Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:21:36Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:21:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:05Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:21:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:22:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:22:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:22:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382270", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382272", + "completed_at": "2026-07-05T09:24:56Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382272", + "id": 85210382272, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_wA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:24:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:24:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:24:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:24:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:53Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:24:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:53Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:24:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:24:53Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:24:53Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382272", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382276", + "completed_at": "2026-07-05T09:24:00Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382276", + "id": 85210382276, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_xA", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:23:37Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:23:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:23:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:40Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:23:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:57Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:23:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:57Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:23:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:23:57Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:23:57Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382276", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210382278", + "completed_at": "2026-07-05T09:26:18Z", + "conclusion": "success", + "created_at": "2026-07-05T09:21:01Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210382278", + "id": 85210382278, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAT1u8_xg", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T09:25:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T09:25:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T09:25:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:25:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T09:25:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:14Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T09:25:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T09:26:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T09:26:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T09:26:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210382278", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85210836237", + "completed_at": "2026-07-05T09:28:05Z", + "conclusion": "skipped", + "created_at": "2026-07-05T09:28:05Z", + "head_branch": "main", + "head_sha": "31e4bfe60802db77e95cd919eb7e171ea0345227", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28736034303/job/85210836237", + "id": 85210836237, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAT1vYtDQ", + "run_attempt": 1, + "run_id": 28736034303, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28736034303", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-05T09:28:05Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85210836237", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85205312915", + "completed_at": "2026-07-05T08:35:41Z", + "conclusion": "success", + "created_at": "2026-07-05T08:03:19Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85205312915", + "id": 85205312915, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAT1qHlkw", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:34:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:34:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:34:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:34:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:29Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-05T08:34:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:35:37Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-05T08:34:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:35:38Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-05T08:35:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:35:38Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-05T08:35:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:35:38Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-05T08:35:38Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85205312915", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85205312918", + "completed_at": "2026-07-05T08:04:03Z", + "conclusion": "success", + "created_at": "2026-07-05T08:03:19Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85205312918", + "id": 85205312918, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAT1qHllg", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000172, + "runner_name": "GitHub Actions 1000000172", + "started_at": "2026-07-05T08:03:21Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:03:22Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:03:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:03:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:03:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:03:31Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-05T08:03:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:03:56Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-05T08:03:31Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:04:00Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-05T08:03:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:04:00Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-05T08:04:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:04:00Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-05T08:04:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:04:01Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-05T08:04:00Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:04:02Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-05T08:04:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:04:02Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-05T08:04:02Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85205312918", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368755", + "completed_at": "2026-07-05T08:36:33Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368755", + "id": 85207368755, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEMw", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:36:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:36:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:36:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:36:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:30Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:36:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:30Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:36:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:30Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:36:30Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368755", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368760", + "completed_at": "2026-07-05T08:36:45Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368760", + "id": 85207368760, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEOA", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:36:34Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:36:36Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:36:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:37Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:36:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:42Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:36:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:43Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:36:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:43Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:36:43Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368760", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368762", + "completed_at": "2026-07-05T08:42:14Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368762", + "id": 85207368762, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEOg", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:41:45Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:41:47Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:41:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:48Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:41:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:11Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:41:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:12Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:42:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:12Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:42:12Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368762", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368763", + "completed_at": "2026-07-05T08:41:20Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368763", + "id": 85207368763, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEOw", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:40:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:40:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:40:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:53Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:40:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:17Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:40:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:41:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:41:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368763", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368765", + "completed_at": "2026-07-05T08:37:14Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368765", + "id": 85207368765, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEPQ", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:36:47Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:36:49Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:36:48Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:49Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:36:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:11Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:36:49Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:37:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:37:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368765", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368785", + "completed_at": "2026-07-05T08:36:14Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368785", + "id": 85207368785, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEUQ", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:35:43Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:35:45Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:35:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:35:46Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:35:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:11Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:35:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:11Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:36:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:36:11Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:36:11Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368785", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368793", + "completed_at": "2026-07-05T08:38:11Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368793", + "id": 85207368793, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEWQ", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:37:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:37:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:37:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:37:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:38:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:37:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:38:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:38:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:38:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:38:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368793", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368795", + "completed_at": "2026-07-05T08:37:47Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368795", + "id": 85207368795, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEWw", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:37:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:37:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:37:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:37:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:44Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:37:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:44Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:37:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:37:44Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:37:44Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368795", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368799", + "completed_at": "2026-07-05T08:40:23Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368799", + "id": 85207368799, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEXw", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:39:49Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:39:51Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:39:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:52Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:39:51Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:21Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:39:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:40:21Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:40:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368799", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368800", + "completed_at": "2026-07-05T08:39:48Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368800", + "id": 85207368800, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEYA", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:39:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:39:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:39:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:25Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:39:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:45Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:39:25Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:45Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:39:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:45Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:39:45Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368800", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368803", + "completed_at": "2026-07-05T08:39:20Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368803", + "id": 85207368803, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEYw", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:38:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:38:14Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:38:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:38:15Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:38:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:18Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:38:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:18Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:39:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:39:18Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:39:18Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368803", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368805", + "completed_at": "2026-07-05T08:41:43Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368805", + "id": 85207368805, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEZQ", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:41:21Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:41:23Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:41:22Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:41:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:41Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:41:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:41Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:41:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:41:41Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:41:41Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368805", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368806", + "completed_at": "2026-07-05T08:40:49Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368806", + "id": 85207368806, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEZg", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:40:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:40:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:40:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:40:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:46Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:40:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:47Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:40:46Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:40:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:40:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368806", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368808", + "completed_at": "2026-07-05T08:43:09Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368808", + "id": 85207368808, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEaA", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:42:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:42:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:42:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:43Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:42:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:43:06Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:42:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:43:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:43:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:43:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:43:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368808", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207368812", + "completed_at": "2026-07-05T08:42:39Z", + "conclusion": "success", + "created_at": "2026-07-05T08:35:41Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207368812", + "id": 85207368812, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAT1sFEbA", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:42:15Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:42:17Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:42:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:18Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:42:17Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:36Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:42:18Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:36Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:42:36Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:42:36Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:42:36Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207368812", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207849155", + "completed_at": "2026-07-05T08:43:10Z", + "conclusion": "skipped", + "created_at": "2026-07-05T08:43:10Z", + "head_branch": "jb/overlord-I", + "head_sha": "bd3565e5c6056adcb1cdd91ccdb398c4b4a436dc", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28734180333/job/85207849155", + "id": 85207849155, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAT1siYww", + "run_attempt": 1, + "run_id": 28734180333, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28734180333", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-05T08:43:10Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207849155", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203130052", + "completed_at": "2026-07-05T07:36:20Z", + "conclusion": "success", + "created_at": "2026-07-05T07:30:23Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203130052", + "id": 85203130052, + "labels": [ + "self-hosted" + ], + "name": "Validation & Linting", + "node_id": "CR_kwDOEwUEuc8AAAAT1oCWxA", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T07:30:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T07:30:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T07:30:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:30:28Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T07:30:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:30:29Z", + "conclusion": "success", + "name": "Format check", + "number": 3, + "started_at": "2026-07-05T07:30:28Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:14Z", + "conclusion": "success", + "name": "Flake check", + "number": 4, + "started_at": "2026-07-05T07:30:29Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:15Z", + "conclusion": "success", + "name": "Dead code check", + "number": 5, + "started_at": "2026-07-05T07:36:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:15Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 10, + "started_at": "2026-07-05T07:36:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:15Z", + "conclusion": "success", + "name": "Complete job", + "number": 11, + "started_at": "2026-07-05T07:36:15Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203130052", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203130057", + "completed_at": "2026-07-05T07:31:12Z", + "conclusion": "success", + "created_at": "2026-07-05T07:30:23Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203130057", + "id": 85203130057, + "labels": [ + "ubuntu-latest" + ], + "name": "Security Scan", + "node_id": "CR_kwDOEwUEuc8AAAAT1oCWyQ", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 0, + "runner_group_name": "GitHub Actions", + "runner_id": 1000000171, + "runner_name": "GitHub Actions 1000000171", + "started_at": "2026-07-05T07:30:25Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T07:30:27Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T07:30:26Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:30:30Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T07:30:27Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:30:37Z", + "conclusion": "success", + "name": "Install Nix", + "number": 3, + "started_at": "2026-07-05T07:30:30Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:03Z", + "conclusion": "success", + "name": "Install Gitleaks", + "number": 4, + "started_at": "2026-07-05T07:30:37Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:08Z", + "conclusion": "success", + "name": "Run Gitleaks secret scanning", + "number": 5, + "started_at": "2026-07-05T07:31:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:08Z", + "conclusion": "success", + "name": "Check for plaintext secrets in Nix files", + "number": 6, + "started_at": "2026-07-05T07:31:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:08Z", + "conclusion": "success", + "name": "Check for hardcoded IPs", + "number": 7, + "started_at": "2026-07-05T07:31:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:09Z", + "conclusion": "success", + "name": "Post Install Nix", + "number": 13, + "started_at": "2026-07-05T07:31:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 14, + "started_at": "2026-07-05T07:31:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:31:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 15, + "started_at": "2026-07-05T07:31:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203130057", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503005", + "completed_at": "2026-07-05T07:36:53Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503005", + "id": 85203503005, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-2)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHnQ", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T07:36:22Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T07:36:24Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T07:36:23Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:24Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T07:36:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:50Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T07:36:24Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:50Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T07:36:50Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:50Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T07:36:50Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503005", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503011", + "completed_at": "2026-07-05T07:37:07Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503011", + "id": 85203503011, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (beta-one)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHow", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T07:36:55Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T07:36:57Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T07:36:56Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:36:58Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T07:36:57Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:04Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T07:36:58Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:04Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T07:37:04Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:04Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T07:37:04Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503011", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503012", + "completed_at": "2026-07-05T07:37:38Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503012", + "id": 85203503012, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (display-1)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHpA", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T07:37:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T07:37:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T07:37:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T07:37:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:35Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T07:37:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:36Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T07:37:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:36Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T07:37:36Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503012", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503015", + "completed_at": "2026-07-05T08:29:36Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503015", + "id": 85203503015, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (print-controller)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHpw", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:29:09Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:29:11Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:29:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:29:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:33Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:29:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:33Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:29:33Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:33Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:29:33Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503015", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503023", + "completed_at": "2026-07-05T08:29:08Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503023", + "id": 85203503023, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-one)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHrw", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:28:09Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:28:12Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:28:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:28:12Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:28:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:05Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:28:12Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:29:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:29:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503023", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503025", + "completed_at": "2026-07-05T08:27:11Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503025", + "id": 85203503025, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (LINDA)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHsQ", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T07:37:40Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T07:37:42Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T07:37:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T07:37:43Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T07:37:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:27:06Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T07:37:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:27:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:27:06Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:27:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:27:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503025", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503028", + "completed_at": "2026-07-05T08:34:24Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503028", + "id": 85203503028, + "labels": [ + "self-hosted" + ], + "name": "Build ARM Configurations (arm-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHtA", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:34:06Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:34:08Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:34:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:08Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:34:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:20Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:34:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:21Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:34:20Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:21Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:34:21Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503028", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503031", + "completed_at": "2026-07-05T08:28:08Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503031", + "id": 85203503031, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-zero)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHtw", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:27:13Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:27:15Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:27:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:27:16Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:27:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:28:05Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:27:16Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:28:05Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:28:05Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:28:05Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:28:05Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503031", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503032", + "completed_at": "2026-07-05T08:30:06Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503032", + "id": 85203503032, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (cortex-alpha)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHuA", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:29:38Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:29:40Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:29:39Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:29:41Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:29:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:03Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:29:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:04Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:30:03Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:04Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:30:04Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503032", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503036", + "completed_at": "2026-07-05T08:30:37Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503036", + "id": 85203503036, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (local-nas)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHvA", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:30:08Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:30:10Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:30:09Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:11Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:30:10Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:35Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:30:11Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:35Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:30:35Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:35Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:30:35Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503036", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503038", + "completed_at": "2026-07-05T08:32:40Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503038", + "id": 85203503038, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (terminal-nx-01)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHvg", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:31:51Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:31:53Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:31:52Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:54Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:31:53Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:32:38Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:31:54Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:32:38Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:32:38Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:32:38Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:32:38Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503038", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503043", + "completed_at": "2026-07-05T08:31:11Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503043", + "id": 85203503043, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (gaming-host-1)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHww", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:30:39Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:30:41Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:30:40Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:30:42Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:30:41Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:08Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:30:42Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:09Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:31:08Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:09Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:31:09Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503043", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503044", + "completed_at": "2026-07-05T08:31:50Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503044", + "id": 85203503044, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-worker)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHxA", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:31:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:31:15Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:31:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:15Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:31:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:47Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:31:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:47Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:31:47Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:31:47Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:31:47Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503044", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503046", + "completed_at": "2026-07-05T08:34:04Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503046", + "id": 85203503046, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (alpha-three)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZHxg", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:33:12Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:33:14Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:33:13Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:33:15Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:33:14Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:01Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:33:15Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:01Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:34:01Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:34:01Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:34:01Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503046", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85203503074", + "completed_at": "2026-07-05T08:33:10Z", + "conclusion": "success", + "created_at": "2026-07-05T07:36:20Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85203503074", + "id": 85203503074, + "labels": [ + "self-hosted" + ], + "name": "Build x86_64 Configurations (remote-builder)", + "node_id": "CR_kwDOEwUEuc8AAAAT1oZH4g", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": 1, + "runner_group_name": "Default", + "runner_id": 23, + "runner_name": "hate-filled", + "started_at": "2026-07-05T08:32:42Z", + "status": "completed", + "steps": [ + { + "completed_at": "2026-07-05T08:32:44Z", + "conclusion": "success", + "name": "Set up job", + "number": 1, + "started_at": "2026-07-05T08:32:43Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:32:45Z", + "conclusion": "success", + "name": "Checkout", + "number": 2, + "started_at": "2026-07-05T08:32:44Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:33:07Z", + "conclusion": "success", + "name": "Build configuration", + "number": 3, + "started_at": "2026-07-05T08:32:45Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:33:07Z", + "conclusion": "success", + "name": "Post Checkout", + "number": 6, + "started_at": "2026-07-05T08:33:07Z", + "status": "completed" + }, + { + "completed_at": "2026-07-05T08:33:07Z", + "conclusion": "success", + "name": "Complete job", + "number": 7, + "started_at": "2026-07-05T08:33:07Z", + "status": "completed" + } + ], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85203503074", + "workflow_name": "NixOS CI/CD" + }, + { + "check_run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/check-runs/85207285405", + "completed_at": "2026-07-05T08:34:24Z", + "conclusion": "skipped", + "created_at": "2026-07-05T08:34:24Z", + "head_branch": "jb/overlord-I", + "head_sha": "631779cc0605c5577d0641ff6e31340befc20b00", + "html_url": "https://github.com/DarthPJB/NixOS-Configuration/actions/runs/28733404356/job/85207285405", + "id": 85207285405, + "labels": [ + "self-hosted" + ], + "name": "Deploy - ${{ github.event.inputs.machine }}", + "node_id": "CR_kwDOEwUEuc8AAAAT1r_-nQ", + "run_attempt": 1, + "run_id": 28733404356, + "run_url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/runs/28733404356", + "runner_group_id": null, + "runner_group_name": null, + "runner_id": null, + "runner_name": null, + "started_at": "2026-07-05T08:34:24Z", + "status": "completed", + "steps": [], + "url": "https://api.github.com/repos/DarthPJB/NixOS-Configuration/actions/jobs/85207285405", + "workflow_name": "NixOS CI/CD" + } +] diff --git a/environments/steam.nix b/environments/steam.nix index b71e4c8f..dca2bc74 100644 --- a/environments/steam.nix +++ b/environments/steam.nix @@ -7,8 +7,9 @@ { programs.steam = { + package = pkgs_llm.steam; enable = true; # you probably already have this - extraCompatPackages = with unstable; [ proton-ge-bin ]; + extraCompatPackages = with pkgs_llm; [ proton-ge-bin ]; }; # Nice-to-have for any game (highly recommended for SE) diff --git a/flake.lock b/flake.lock index 43ea586f..63263f21 100644 --- a/flake.lock +++ b/flake.lock @@ -1523,12 +1523,12 @@ }, "nixpkgs_llm": { "locked": { - "lastModified": 1784497964, - "narHash": "sha256-vlHUuqAcbcH2RKmHbPiuQzbv1pnzzavXnI62RD0bqCU=", - "rev": "241313f4e8e508cb9b13278c2b0fa25b9ca27163", - "revCount": 1037713, + "lastModified": 1785828668, + "narHash": "sha256-8fsyqeO+mJqvIzeO4xIpgJe/f7MTbbVTEC6RT6WSXNs=", + "rev": "e72e4f299401a3689d4b3d5fc6496b11db7064eb", + "revCount": 1047536, "type": "tarball", - "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.1037713%2Brev-241313f4e8e508cb9b13278c2b0fa25b9ca27163/019f7ea2-cc7f-76e3-b0ff-0fefb2384cde/source.tar.gz" + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.1047536%2Brev-e72e4f299401a3689d4b3d5fc6496b11db7064eb/019fcd00-1d90-79a2-acd8-54111cc4b057/source.tar.gz" }, "original": { "type": "tarball", diff --git a/flake.nix b/flake.nix index d3302779..2c2cd6ad 100644 --- a/flake.nix +++ b/flake.nix @@ -2,8 +2,12 @@ description = "A NixOS flake for John Bargman's machine provisioning"; nixConfig = { - extra-substituters = [ "https://install.determinate.systems" ]; + extra-substituters = [ + "https://cache.johnbargman.net" + "https://install.determinate.systems" + ]; extra-trusted-public-keys = [ + "cache.johnbargman.net:A4GtVLF/JKtEcHHcT/4rBPvjg1b+xIH1AaHvxhSzUSk=" "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM=" "install.determinate.systems:a7GMGXFqz7lFjOE45sTRq1g/RX6KFHRKHXOHTi1uFhM=" ]; @@ -102,7 +106,7 @@ inherit denton-glasses; inherit personal-site; inherit LLM-CORE; - pkgs_llm = nixpkgs_llm.legacyPackages.x86_64-linux; + pkgs_llm = import nixpkgs_llm { system = "x86_64-linux"; config.allowUnfree = true; }; }; minecraft-curseforge-builder = nixpkgs.callPackage ./pkgs/minecraft-curseforge { }; prometheus-mcp-server-builder = nixpkgs.callPackage ./pkgs/prometheus-mcp-server { }; diff --git a/goldens/LINDA.json b/goldens/LINDA.json index 84ad90a7..eca725b5 100644 --- a/goldens/LINDA.json +++ b/goldens/LINDA.json @@ -434,8 +434,8 @@ "", "", "", - "", - "", + "", + "", "", "", "", diff --git a/goldens/alpha-one.json b/goldens/alpha-one.json index 39d3d567..49c27488 100644 --- a/goldens/alpha-one.json +++ b/goldens/alpha-one.json @@ -441,8 +441,8 @@ "", "", "", - "", - "", + "", + "", "", "", "", diff --git a/goldens/alpha-three.json b/goldens/alpha-three.json index ed76b961..b9902fb9 100644 --- a/goldens/alpha-three.json +++ b/goldens/alpha-three.json @@ -346,8 +346,8 @@ "", "", "", - "", - "", + "", + "", "", "", "", diff --git a/goldens/cortex-alpha.json b/goldens/cortex-alpha.json index e1911582..b87b80ee 100644 --- a/goldens/cortex-alpha.json +++ b/goldens/cortex-alpha.json @@ -988,6 +988,7 @@ "resolveLocalQueries": true, "settings": { "address": [ + "/cache.johnbargman.net/10.88.128.1", "/git.johnbargman.net/10.88.128.1", "/code.johnbargman.net/10.88.128.1", "/cortex-alpha.johnbargman.net/10.88.128.1", @@ -1250,6 +1251,58 @@ "sslTrustedCertificate": null, "useACMEHost": "johnbargman.net" }, + "cache.johnbargman.net": { + "acmeFallbackHost": null, + "acmeRoot": "/var/lib/acme/acme-challenge", + "addSSL": true, + "basicAuth": {}, + "basicAuthFile": null, + "default": false, + "enableACME": false, + "extraConfig": "", + "forceSSL": false, + "globalRedirect": null, + "http2": true, + "http3": true, + "http3_hq": false, + "kTLS": false, + "listen": [], + "listenAddresses": [ + "10.88.128.1", + "10.88.127.1" + ], + "locations": { + "/": { + "alias": null, + "basicAuth": {}, + "basicAuthFile": null, + "extraConfig": "proxy_set_header Host $host;\nproxy_set_header X-Real-IP $remote_addr;\nproxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\nproxy_set_header X-Forwarded-Proto $scheme;\nproxy_set_header Upgrade $http_upgrade;\nproxy_set_header Connection $connection_upgrade;\n", + "fastcgiParams": {}, + "index": null, + "priority": 1000, + "proxyPass": "http://10.88.127.51:5001", + "proxyWebsockets": true, + "recommendedProxySettings": false, + "recommendedUwsgiSettings": false, + "return": null, + "root": null, + "tryFiles": null, + "uwsgiPass": null + } + }, + "onlySSL": false, + "quic": false, + "redirectCode": 301, + "rejectSSL": false, + "reuseport": false, + "root": null, + "serverAliases": [], + "serverName": null, + "sslCertificate": "", + "sslCertificateKey": "", + "sslTrustedCertificate": null, + "useACMEHost": "johnbargman.net" + }, "code.johnbargman.net": { "acmeFallbackHost": null, "acmeRoot": "/var/lib/acme/acme-challenge", diff --git a/goldens/remote-builder.json b/goldens/remote-builder.json index dfbe4de5..355c105d 100644 --- a/goldens/remote-builder.json +++ b/goldens/remote-builder.json @@ -342,7 +342,8 @@ "allowedTCPPortRanges": [], "allowedTCPPorts": [ 1108, - 2108 + 2108, + 5001 ], "allowedUDPPortRanges": [], "allowedUDPPorts": [ @@ -365,7 +366,8 @@ "allowedTCPPortRanges": [], "allowedTCPPorts": [ 1108, - 2108 + 2108, + 5001 ], "allowedUDPPortRanges": [], "allowedUDPPorts": [ diff --git a/goldens/terminal-zero.json b/goldens/terminal-zero.json index 0209a4d9..8d97104d 100644 --- a/goldens/terminal-zero.json +++ b/goldens/terminal-zero.json @@ -350,8 +350,8 @@ "", "", "", - "", - "", + "", + "", "", "", "", diff --git a/machines/remote-builder/default.nix b/machines/remote-builder/default.nix index 24f2cf2c..d9b7303b 100644 --- a/machines/remote-builder/default.nix +++ b/machines/remote-builder/default.nix @@ -18,7 +18,11 @@ ../../modifier_imports/remote-builder.nix ../../users/build.nix ../../modules/enable-wg-topology.nix + ../../services/nix-cache-serve.nix ]; + # Nix binary cache — open port 5001 on WAN + networking.firewall.allowedTCPPorts = [ 5001 ]; + # Virtual disk devices — smartctl/smartd not applicable services.smartd.enable = lib.mkForce false; services.prometheus.exporters.smartctl.enable = lib.mkForce false; diff --git a/secrets/cache-priv-key b/secrets/cache-priv-key new file mode 100644 index 00000000..01302acb --- /dev/null +++ b/secrets/cache-priv-key @@ -0,0 +1,6 @@ +age-encryption.org/v1 +-> ssh-ed25519 +tYlAA 6UnU0YYH7fqMDxEAOmYUMBSUGaBFxMOQs4tDhXFxeBM +y+KvEKmOAoeQa4spBRfDaCZT9i8F1fNxzfDVOCndtgg +--- cojem9ESw2fxE3B5+v0djXdtWzu74DmSVAVsbbFQtSo +Gg控G 1~$͆׏c,k] D$@˘b ++E8;vmDv|qG-$g0Q뚱waȱe|,Nű[MK \ No newline at end of file diff --git a/secrets/cache-pub-key b/secrets/cache-pub-key new file mode 100644 index 00000000..c1fec83a --- /dev/null +++ b/secrets/cache-pub-key @@ -0,0 +1 @@ +cache.johnbargman.net:A4GtVLF/JKtEcHHcT/4rBPvjg1b+xIH1AaHvxhSzUSk= diff --git a/secrets/github_org_runner_token b/secrets/github_org_runner_token index 10bf8897..9b2db808 100644 Binary files a/secrets/github_org_runner_token and b/secrets/github_org_runner_token differ diff --git a/services/mkRunners.nix b/services/mkRunners.nix index 1ac23b89..d09ebd6f 100644 --- a/services/mkRunners.nix +++ b/services/mkRunners.nix @@ -60,11 +60,11 @@ in count = 1; extraLabels = [ "self-hosted" ]; }) // - # entropy-is-origin — Bargman-Tech org (gitlab-aware for private flake inputs) + # entropy-is-origin — Bargman-Tech org (org runner token, gitlab-aware for private flake inputs) (mkRunner { namePrefix = "entropy-is-origin"; url = "https://github.com/Bargman-Tech"; - tokenFile = config.secrix.services.github-runner-entropy-is-origin.secrets.github_org_runner_token.decrypted.path; + tokenFile = config.secrix.system.secrets.github_org_runner_token.decrypted.path; count = 1; extraLabels = [ "self-hosted" ]; extraEnvironment = { GIT_ASKPASS = "${gitlabAskpass}"; }; @@ -94,7 +94,7 @@ in "${self}/secrets/hate-filled-generator"; # Org runner token for Bargman-Tech (entropy-is-origin) - secrix.services.github-runner-entropy-is-origin.secrets.github_org_runner_token.encrypted.file = + secrix.system.secrets.github_org_runner_token.encrypted.file = "${self}/secrets/github_org_runner_token"; # Ensure /nix/cache exists and is writable by the build user. diff --git a/services/nix-cache-serve.nix b/services/nix-cache-serve.nix new file mode 100644 index 00000000..4a2fb46f --- /dev/null +++ b/services/nix-cache-serve.nix @@ -0,0 +1,24 @@ +# services/nix-cache-serve.nix +# Nix binary cache server — serves signed /nix/store paths over plain HTTP. +# TLS termination is handled by cortex-alpha's nginx reverse proxy. +# Matches the infrastructure-2 pattern (services/nix-cache-serve.nix on hyperhyper). + +{ config, lib, self, ... }: +{ + # HTTP binary cache server + services.nix-serve = { + enable = true; + secretKeyFile = config.secrix.services.nix-serve.secrets.cache-priv-key.decrypted.path; + bindAddress = "0.0.0.0"; + port = 5001; + }; + + # Sign locally-built derivations with the cache key so they can be served + nix.settings.secret-key-files = [ + config.secrix.services.nix-serve.secrets.cache-priv-key.decrypted.path + ]; + + # Secrix: decrypt signing key at runtime + secrix.services.nix-serve.secrets.cache-priv-key.encrypted.file = + "${self}/secrets/cache-priv-key"; +} diff --git a/topology/cortex-alpha.json b/topology/cortex-alpha.json index 0a6da23a..e686bbb5 100644 --- a/topology/cortex-alpha.json +++ b/topology/cortex-alpha.json @@ -117,6 +117,7 @@ "dns": { "interface": "enp3s0", "static": [ + { "domain": "cache.johnbargman.net", "ip": "10.88.128.1" }, { "domain": "git.johnbargman.net", "ip": "10.88.128.1" }, { "domain": "code.johnbargman.net", "ip": "10.88.128.1" }, { "domain": "cortex-alpha.johnbargman.net", "ip": "10.88.128.1" }, @@ -140,6 +141,12 @@ "return": "444" } ], + "cache.johnbargman.net": [ + { + "proxy_to": "10.88.127.51:5001", + "proxy_headers": true + } + ], "johnbargman.net": [ { "static": {