utils/nix/repo/flake.nix
2025-10-04 17:37:55 +02:00

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;
};
}