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