mirror of
https://gitlab.com/rensa-nix/utils.git
synced 2025-12-11 23:20:12 +01:00
15 lines
311 B
Nix
15 lines
311 B
Nix
{
|
|
inputs = {
|
|
devshell-lib.url = "gitlab:rensa-nix/devshell?dir=lib";
|
|
treefmt-nix = {
|
|
url = "github:numtide/treefmt-nix";
|
|
flake = false;
|
|
};
|
|
};
|
|
outputs = i:
|
|
i
|
|
// {
|
|
devshell = i.devshell-lib.lib {inherit (i.parent) pkgs;};
|
|
treefmt = import i.treefmt-nix;
|
|
};
|
|
}
|