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