mirror of
https://gitlab.com/TECHNOFAB/coder-templates.git
synced 2025-12-12 02:00:11 +01:00
11 lines
179 B
Nix
11 lines
179 B
Nix
|
|
{
|
||
|
|
inputs = {
|
||
|
|
tofunix-lib.url = "gitlab:TECHNOFAB/tofunix?dir=lib";
|
||
|
|
};
|
||
|
|
outputs = i:
|
||
|
|
i
|
||
|
|
// {
|
||
|
|
tofulib = i.tofunix-lib.lib {inherit (i.parent) pkgs;};
|
||
|
|
};
|
||
|
|
}
|