nix-exprs/flake/outputs/devshell.nix

21 lines
350 B
Nix
Raw Permalink Normal View History

2024-11-18 17:24:33 +08:00
{
perSystem =
{
config,
pkgs,
lib,
...
}:
{
devshells.default = {
packages = with pkgs; [
just
];
env = [
(lib.nameValuePair "DEVSHELL_NO_MOTD" 1)
];
devshell.startup.pre-commit-hook.text = config.pre-commit.installationScript;
};
};
}