summary refs log tree commit diff stats
path: root/user/settings/development/web.nix
blob: f8b74adc3e55e181a8d496e4054231d5d5c90230 (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.nodePackages.stylelint
  ];
}