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