nixos-config/shell.nix

27 lines
433 B
Nix

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