From 241eeb7d737eee0a88016347eba3985ebb92c3ef Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 19 Jan 2026 15:52:05 +0100 Subject: [PATCH] refactor(nix): update system attribute references in overlays - Replaced `prev.system` with `prev.stdenv.hostPlatform.system` for package inheritance in `flake.nix` overlays. - Ensures compatibility with changes in the Nixpkgs attribute structure. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 0144333..e9eedb8 100644 --- a/flake.nix +++ b/flake.nix @@ -108,10 +108,10 @@ overlays = with inputs; [ (final: prev: { - inherit (claude.packages.${prev.system}) claude-desktop-with-fhs; + inherit (claude.packages.${prev.stdenv.hostPlatform.system}) claude-desktop-with-fhs; }) (final: prev: { - inherit (cratedocs.packages.${prev.system}) cratedocs-mcp; + inherit (cratedocs.packages.${prev.stdenv.hostPlatform.system}) cratedocs-mcp; }) ];