From ea11dbb6ae0366a4ba2e61d542333b97d97c6607 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 27 Mar 2025 16:38:59 +0100 Subject: [PATCH] flake.nix: inherit (nixpkgs) lib as output --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 167e54c..b00c5d5 100644 --- a/flake.nix +++ b/flake.nix @@ -125,9 +125,10 @@ unstable-pkgs = import nixpkgs-unstable pkgs-config; yet-unstabler-pkgs = import nixpkgs-yet-unstabler pkgs-config; in { - extendedLib = import ./lib { stdlib = pkgs.lib; }; - inherit pkgs; + inherit (nixpkgs) lib; + + extendedLib = import ./lib { stdlib = pkgs.lib; }; inputs = pkgs.lib.mapAttrs (_: src: src.outPath) inputs;