mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-30 01:24:57 +08:00
9 lines
176 B
Nix
9 lines
176 B
Nix
{ pkgs ? import <nixpkgs> { }, ... }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
treefmt
|
|
nixpkgs-fmt
|
|
# To enable webhint to analyze source files
|
|
nodejs
|
|
];
|
|
}
|