mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
33 lines
571 B
Nix
33 lines
571 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
age
|
|
asciidoctor
|
|
deploy-rs
|
|
git
|
|
sops
|
|
|
|
bind
|
|
opentofu
|
|
|
|
jq
|
|
wl-clipboard
|
|
|
|
# Language servers for various parts of the config that uses a language.
|
|
lua-language-server
|
|
pyright
|
|
nil
|
|
terraform-ls
|
|
|
|
# Formatters...
|
|
treefmt # The universal formatter (if you configured it).
|
|
stylua # ...for Lua.
|
|
black # ...for Python.
|
|
nixpkgs-fmt # ...for Nix.
|
|
|
|
# Mozilla addons-specific tooling.
|
|
nur.repos.rycee.mozilla-addons-to-nix
|
|
];
|
|
}
|