overlays: Use prev.stdenv.hostPlatform to get system instead of final

This commit is contained in:
ulic-youthlic 2025-07-12 05:28:23 +08:00
parent b54be83fd7
commit eb1781b2ba
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
2 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,5 @@
{inputs, ...}: final: _prev: let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
{inputs, ...}: _final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
dae = inputs.dae.packages."${system}".dae-unstable;
}

View file

@ -1,5 +1,5 @@
{inputs, ...}: final: prev: let
inherit (final.stdenv.hostPlatform) system;
inherit (prev.stdenv.hostPlatform) system;
in {
nur =
prev.nur