nixos-config/shell.nix

18 lines
281 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
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
];
}