mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-11 22:00:09 +01:00
11 lines
173 B
Nix
11 lines
173 B
Nix
{
|
|
inputs = {
|
|
devshell.url = "gitlab:rensa-nix/devshell?dir=lib";
|
|
};
|
|
|
|
outputs = i:
|
|
i
|
|
// {
|
|
dslib = i.devshell.lib {inherit (i.parent) pkgs;};
|
|
};
|
|
}
|