core/cells/repo/devShells.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

7 lines
135 B
Nix

{inputs, ...}: let
inherit (inputs) pkgs devshellLib;
in {
default = devshellLib.mkShell {
packages = [pkgs.alejandra];
};
}