core/cells/repo/devShells.nix

8 lines
135 B
Nix
Raw Normal View History

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