nixos-config/shell.nix

24 lines
396 B
Nix
Raw Normal View History

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