nix-config/flake/dev-shells.nix
Bruno BELANYI 42ea0f97b1
All checks were successful
ci/woodpecker/push/check Pipeline was successful
WIP: setup lua LSP
2024-03-12 15:33:48 +00:00

21 lines
381 B
Nix

{ ... }:
{
perSystem = { config, pkgs, ... }: {
devShells = {
default = pkgs.mkShellNoCC {
name = "NixOS-config";
nativeBuildInputs = with pkgs; [
gitAndTools.pre-commit
lua-language-server
nixpkgs-fmt
];
shellHook = ''
${config.pre-commit.installationScript}
'';
};
};
};
}