From 4ac11865c5c951c3f320820f9a3fe8466a96c815 Mon Sep 17 00:00:00 2001 From: alexion Date: Tue, 28 Jul 2026 23:27:48 -0400 Subject: [PATCH] build: drop redundant flake smoke check (task 0003) The checks.smoke derivation only ran 'kitchen --help', which the e2e tier now covers (end_to_end_test.ts, '--help lists the view command'). checks.tests is the remaining flake check. --- flake.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/flake.nix b/flake.nix index a472f58..b88564f 100644 --- a/flake.nix +++ b/flake.nix @@ -93,11 +93,6 @@ doCheck = true; installPhase = "touch $out"; }; - - smoke = pkgs.runCommand "kitchen-smoke" { } '' - ${kitchen}/bin/kitchen --help - touch $out - ''; }; }; };