dotfiles/shell.nix
Gabriel Arazas 5e116e1681 shell.nix: remove pinned nixpkgs
It is already handled with flakes anyways.
2023-10-31 14:38:20 +08:00

22 lines
349 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
packages = [
python3
stow
# Language servers for...
lua-language-server # ...Lua.
pyright # ...Python.
rnix-lsp # ...Nix.
# Formatters for...
treefmt # ...everything under the sun.
stylua # ...Lua.
nixpkgs-fmt # ...Nix.
black # ...Python.
];
}