nixos-config/shell.nix
2022-11-19 11:32:29 +08:00

24 lines
396 B
Nix

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
asciidoctor
age
git
jq
nixpkgs-fmt
sops
treefmt
# Language servers for various parts of the config that uses a language.
sumneko-lua-language-server
pyright
rnix-lsp
# Formatters...
stylua # ...for Lua.
black # ...for Python.
nixpkgs-fmt # ...for Nix.
];
}