easyOverlay: Remove performance warning which is not relevant

This commit is contained in:
Robert Hensing 2023-01-05 01:07:58 +01:00
parent c089237966
commit 9ca2803752
2 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,4 @@
toplevel@{ config, lib, flake-parts-lib, getSystem, ... }:
toplevel@{ config, lib, flake-parts-lib, getSystemIgnoreWarning, ... }:
let
inherit (flake-parts-lib)
mkPerSystemOption;
@ -50,7 +50,7 @@ in
throw "Could not determine the `hostPlatform` of Nixpkgs. Was this overlay loaded as a Nixpkgs overlay, or was it loaded into something else?"
)
);
perSys = (getSystem system).extendModules {
perSys = (getSystemIgnoreWarning system).extendModules {
modules = [
{
_file = "flake-parts#flakeModules.easyOverlay/overlay-overrides";