From 1f53bc3cd775e14509aad4079ef85f94da3ae244 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 2 Jun 2026 20:20:19 +0200 Subject: pkgs/*/flake.nix: Actually instantiate `nixpkgs` instead of just loading --- npins/full.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'npins') diff --git a/npins/full.nix b/npins/full.nix index 547b32cf..0fb56679 100644 --- a/npins/full.nix +++ b/npins/full.nix @@ -1,10 +1,8 @@ _: let sources = import ../unflake.nix; - load = input: sources."${input}"; - loadFlake = load; + loadFlake = input: sources."${input}"; # loadFlake = flakeInput: (import sources.flake-compat {src = sources."${flakeInput}";}).outputs; - # load = input: import sources."${input}" {}; in { - inherit sources load loadFlake; + inherit sources loadFlake; } -- cgit v1.3.1