mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-30 22:57:54 +00:00
23 lines
370 B
Nix
23 lines
370 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
packages = [
|
|
python3
|
|
stow
|
|
|
|
# Language servers for...
|
|
lua-language-server # ...Lua.
|
|
pyright # ...Python.
|
|
nixd # ...Nix.
|
|
|
|
# Formatters for...
|
|
treefmt # ...everything under the sun.
|
|
stylua # ...Lua.
|
|
nixpkgs-fmt # ...Nix.
|
|
black # ...Python.
|
|
nufmt # ... Nushell.
|
|
];
|
|
}
|