core/cells/repo/flake.nix

15 lines
248 B
Nix
Raw Normal View History

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