From 885fe8517de823c21918bb40694f30302d8b6c8d Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Sun, 10 May 2026 09:27:48 -0400 Subject: [PATCH] chore: remove fish --- overlays/fish/default.nix | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 overlays/fish/default.nix diff --git a/overlays/fish/default.nix b/overlays/fish/default.nix deleted file mode 100644 index 1e10d3b..0000000 --- a/overlays/fish/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -# Workaround for aarch64-darwin codesigning bug (nixpkgs#208951 / #507531): -# fish binaries from the binary cache occasionally have invalid ad-hoc -# signatures on Apple Silicon. Forcing a local rebuild ensures codesigning -# is applied on this machine with a valid signature. -{ inputs, ... }: -final: prev: { - fish = prev.fish.overrideAttrs (_old: { - # Bust the cache key so fish is always built locally rather than - # substituted from the binary cache where the signature may be stale. - NIX_FORCE_LOCAL_REBUILD = "darwin-codesign-fix"; - }); -}