dotfiles/nix/home-manager/modules/webdev.nix

10 lines
254 B
Nix
Raw Normal View History

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
{ config, lib, ... }:
2021-01-18 09:01:38 +01:00
{
home.packages = with nixpkgs; [
wasm-pack
nodePackages.vscode-html-languageserver-bin
nodePackages.vscode-css-languageserver-bin
];
}