From 39677c0a00a9968e3882c028185435874977db99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey?= Date: Thu, 16 Apr 2026 17:44:02 -0700 Subject: [PATCH] chore(spore): intentional build failure to test CI notification Co-Authored-By: Claude Sonnet 4.6 --- hosts/spore/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/spore/default.nix b/hosts/spore/default.nix index 2b3f57fd..34c2aa4e 100644 --- a/hosts/spore/default.nix +++ b/hosts/spore/default.nix @@ -61,5 +61,10 @@ max-free = 5 * 1024 * 1024 * 1024; # 5 GB — stop GC once this much space is free }; + # Intentional build failure to test CI Slack notification — remove after verifying + environment.systemPackages = [ + (pkgs.runCommand "ci-notification-test" {} "exit 1") + ]; + system.stateVersion = "24.05"; }