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.
This commit is contained in:
Harald Hoyer 2026-01-19 15:52:05 +01:00
parent db073f32f0
commit 241eeb7d73

View file

@ -108,10 +108,10 @@
overlays = with inputs; [ overlays = with inputs; [
(final: prev: { (final: prev: {
inherit (claude.packages.${prev.system}) claude-desktop-with-fhs; inherit (claude.packages.${prev.stdenv.hostPlatform.system}) claude-desktop-with-fhs;
}) })
(final: prev: { (final: prev: {
inherit (cratedocs.packages.${prev.system}) cratedocs-mcp; inherit (cratedocs.packages.${prev.stdenv.hostPlatform.system}) cratedocs-mcp;
}) })
]; ];