mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
18 lines
281 B
Nix
18 lines
281 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
asciidoctor
|
|
age
|
|
git
|
|
jq
|
|
nixpkgs-fmt
|
|
sops
|
|
|
|
# Language servers for various parts of the config that uses a language.
|
|
sumneko-lua-language-server
|
|
pyright
|
|
rnix-lsp
|
|
];
|
|
}
|