nixos-wsl/nix/devshell.nix

25 lines
447 B
Nix
Raw Permalink Normal View History

2024-09-09 22:08:49 +02:00
{
perSystem =
{ pkgs, config, ... }:
{
devShells = {
default = pkgs.mkShell {
packages = with pkgs; [
deadnix
git
git-lfs
ipcalc
nil
shellcheck
statix
treefmt
];
shellHook = ''
${config.pre-commit.installationScript}
'';
};
};
};
}