nixos-config/shell.nix

28 lines
485 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = with pkgs; [
age
asciidoctor
deploy-rs
git
sops
terraform
jq
wl-clipboard
# 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...
treefmt # The universal formatter (if you configured it).
2022-11-19 03:00:53 +00:00
stylua # ...for Lua.
black # ...for Python.
nixpkgs-fmt # ...for Nix.
];
}