From b6248a7c20717e9f597841fe21e4167a09a1b650 Mon Sep 17 00:00:00 2001 From: xenia Date: Tue, 17 Dec 2024 01:13:19 -0500 Subject: [PATCH] fix precedence --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 1576dc8..9b97abc 100644 --- a/default.nix +++ b/default.nix @@ -14,9 +14,9 @@ let }; in { overlays ? [], ... } @ args: - import "${nixpkgs}" { + import "${nixpkgs}" ({ overlays = [ (import ./overlay.nix) (import "${lix-module}/overlay.nix" { inherit lix; }) ] ++ overlays; - } // (builtins.removeAttrs args [ "overlays" ]) + } // (builtins.removeAttrs args [ "overlays" ]))