From dc5cb308b58b15574f240480bba7856552482bc0 Mon Sep 17 00:00:00 2001 From: Marc Jakobi Date: Wed, 3 Dec 2025 01:52:14 +0100 Subject: build(nix): prevent deprecation warning on evaluation (#3006) Evaluating the overlay produces the following evaluation warning: `'system' has been renamed to/replaced by 'stdenv.hostPlatform.system'` ## Checks - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index df96a9af..45ec70f6 100644 --- a/flake.nix +++ b/flake.nix @@ -68,7 +68,7 @@ }) // { overlays.default = final: prev: { - inherit (self.packages.${final.system}) atuin; + inherit (self.packages.${final.stdenv.hostPlatform.system}) atuin; }; }; } -- cgit v1.3.1