8 lines
111 B
Nix
8 lines
111 B
Nix
{ pkgs, ... }@all: with all;
|
|
{
|
|
home.packages = with pkgs; [
|
|
nodejs
|
|
typescript-language-server
|
|
];
|
|
}
|