core/cells/repo/devShells.nix

8 lines
180 B
Nix

{inputs, ...}: let
inherit (inputs) pkgs dslib;
in {
default = dslib.mkShell {
packages = [pkgs.alejandra];
enterShellCommands."ren".text = "echo Hello rensa!";
};
}