mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
12 lines
178 B
Nix
12 lines
178 B
Nix
|
|
{
|
||
|
|
inputs = {
|
||
|
|
nixpkgs-lib.url = "github:nix-community/nixpkgs.lib";
|
||
|
|
};
|
||
|
|
|
||
|
|
outputs = inputs: {
|
||
|
|
lib = import ./. {
|
||
|
|
inherit (inputs.nixpkgs-lib) lib;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|