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:
parent
db073f32f0
commit
241eeb7d73
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue