core/lib/flake.nix
technofab 7222ac48cd
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
2025-08-14 11:38:53 +02:00

9 lines
157 B
Nix

{
inputs = {
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
};
outputs = inputs: import ./. {
inherit (inputs.nixpkgs-lib) lib;
};
}