nixos-config/shell.nix
Sridhar Ratnakumar 73137b50fa Add treefmt
2022-05-07 09:09:21 -04:00

9 lines
176 B
Nix

{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
treefmt
nixpkgs-fmt
# To enable webhint to analyze source files
nodejs
];
}