machines: fix warning about stdenv.hostPlatform.system
Some checks failed
/ Build Nix targets (push) Has been cancelled

This commit is contained in:
Felix Buehler 2025-11-21 19:35:21 +01:00
parent e60d5690d5
commit e23a2921f0

View file

@ -12,7 +12,7 @@ let
nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem; nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem;
overlay-unstable = final: _prev: { overlay-unstable = final: _prev: {
unstable = import nixpkgs-unstable { unstable = import nixpkgs-unstable {
inherit (final) system; inherit (final.stdenv.hostPlatform) system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };