nixos-config/shell.nix

27 lines
433 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
2022-11-26 12:52:53 +00:00
deploy-rs
terraform
# Language servers for various parts of the config that uses a language.
2023-03-24 02:25:49 +00:00
lua-language-server
pyright
rnix-lsp
terraform-ls
2022-11-19 03:00:53 +00:00
# Formatters...
stylua # ...for Lua.
black # ...for Python.
nixpkgs-fmt # ...for Nix.
];
}