flake: add alejandra to default devshell

This commit is contained in:
raf 2024-02-19 12:33:12 +03:00
commit f7fca7fb9c
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29

View file

@ -48,7 +48,12 @@
default = self'.devShells.lsp;
nvim-nix = pkgs.mkShell {nativeBuildInputs = [config.packages.nix];};
lsp = pkgs.mkShell {
nativeBuildInputs = with pkgs; [nil statix deadnix];
nativeBuildInputs = with pkgs; [
alejandra # formatter
nil # nix language server
statix # static analysis
deadnix # dead code analysis
];
};
};
};