devShells.default: add language servers for this project

This commit is contained in:
Gabriel Arazas 2022-09-29 11:34:07 +08:00
parent ef2648bf3a
commit 6cd97ed0fe

View File

@ -1,5 +1,17 @@
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [ asciidoctor age git jq nixpkgs-fmt rnix-lsp sops ];
packages = with pkgs; [
asciidoctor
age
git
jq
nixpkgs-fmt
sops
# Language servers for various parts of the config that uses a language.
sumneko-lua-language-server
pyright
rnix-lsp
];
}