10 lines
270 B
Nix
10 lines
270 B
Nix
{ pkgs, lib, config, ... }: {
|
|
home.packages = with pkgs;
|
|
[
|
|
|
|
] ++ lib.optionals config.programs.helix.enable
|
|
[ nodePackages.typescript-language-server ]
|
|
++ lib.optionals config.programs.kakoune.enable
|
|
[ nodePackages.typescript-language-server ];
|
|
}
|
|
|