chore: remove lib attr in flake and expose functions directly

add nixpkgs-lib input so we don't need full nixpkgs just for the lib
This commit is contained in:
technofab 2025-08-14 11:38:53 +02:00
parent c9c329ec0f
commit 7222ac48cd
No known key found for this signature in database
3 changed files with 21 additions and 6 deletions

View file

@ -3,9 +3,7 @@
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
};
outputs = inputs: {
lib = import ./. {
inherit (inputs.nixpkgs-lib) lib;
};
outputs = inputs: import ./. {
inherit (inputs.nixpkgs-lib) lib;
};
}