dotfiles/shell.nix

23 lines
370 B
Nix
Raw Normal View History

2022-04-02 04:02:05 +00:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
packages = [
python3
stow
2023-03-22 11:16:57 +00:00
# Language servers for...
lua-language-server # ...Lua.
pyright # ...Python.
nixd # ...Nix.
2023-03-22 11:16:57 +00:00
# Formatters for...
treefmt # ...everything under the sun.
stylua # ...Lua.
nixpkgs-fmt # ...Nix.
black # ...Python.
nufmt # ... Nushell.
2022-04-02 04:02:05 +00:00
];
}