10 lines
264 B
Nix
10 lines
264 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
|
|
];
|
|
}
|
|
|