From e23a2921f091de63c74853c612bf3aa0c1055d02 Mon Sep 17 00:00:00 2001 From: Felix Buehler Date: Fri, 21 Nov 2025 19:35:21 +0100 Subject: [PATCH] machines: fix warning about stdenv.hostPlatform.system --- machines/configurations.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/configurations.nix b/machines/configurations.nix index 129ba74..8139b98 100644 --- a/machines/configurations.nix +++ b/machines/configurations.nix @@ -12,7 +12,7 @@ let nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem; overlay-unstable = final: _prev: { unstable = import nixpkgs-unstable { - inherit (final) system; + inherit (final.stdenv.hostPlatform) system; config.allowUnfree = true; }; };