mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
25 lines
410 B
Nix
25 lines
410 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
asciidoctor
|
|
age
|
|
git
|
|
jq
|
|
nixpkgs-fmt
|
|
sops
|
|
treefmt
|
|
deploy-rs
|
|
|
|
# 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.
|
|
];
|
|
}
|