From 2c64b6a902ce9993c16af171d504506afa57d9c3 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" ]))