Add global lib relativePath

This commit is contained in:
SebastianStork 2025-11-07 21:03:19 +01:00
parent 39bd59c8ee
commit 56f11d4ade
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
4 changed files with 19 additions and 9 deletions

View file

@ -1,4 +1,7 @@
{ self, inputs, ... }:
{
flake.lib = import "${self}/lib" inputs.nixpkgs.lib;
flake.lib = import "${self}/lib" {
inherit (inputs.nixpkgs) lib;
inherit self;
};
}