summary refs log tree commit diff stats
path: root/user/settings/development/web.nix
blob: de30f8e70f26808375fc315a11882ab0463f91df (plain)
1
2
3
4
5
6
7
8
9
10
{ config, pkgs, ... }:
{
  home.packages = with pkgs.nodePackages; [
    vscode-css-languageserver-bin
    vscode-html-languageserver-bin
    csslint
  ] ++ [
    pkgs.unstable.nodePackages.stylelint
  ];
}