core/cells/repo/flake.nix
technofab c9c329ec0f
feat: add devshell and improve input handling of cells
pass system to cells and their flake.nix inputs
2025-08-06 10:13:34 +02:00

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