From 7c96bdd2e2802fc40225638f3177f07ca50f886f Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Mon, 1 Dec 2025 10:36:08 -0500 Subject: [PATCH] pkgs/impure-overlays.nix: must always yield a list Signed-off-by: Connor Baker --- pkgs/top-level/impure-overlays.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/impure-overlays.nix b/pkgs/top-level/impure-overlays.nix index 522bb3267429..a46571d08840 100644 --- a/pkgs/top-level/impure-overlays.nix +++ b/pkgs/top-level/impure-overlays.nix @@ -38,7 +38,7 @@ let ) else # it's a file, so the result is the contents of the file itself - import path; + [ (import path) ]; in if pathOverlays != "" && builtins.pathExists pathOverlays then overlays pathOverlays