School: configure helix with typecript lsp

This commit is contained in:
Toast 2025-01-19 20:45:57 +01:00
parent a59b356e9d
commit 65b7cf4ab6
2 changed files with 11 additions and 0 deletions

View file

@ -1,6 +1,7 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [ imports = [
./android-studio.nix ./android-studio.nix
./helix.nix
]; ];
home-manager.users.toast.home.packages = [pkgs.mongodb-compass]; home-manager.users.toast.home.packages = [pkgs.mongodb-compass];
} }

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
home-manager.users.toast = {
programs.helix = {
extraPackages = with pkgs; [
typescript-language-server
nodePackages.prettier
];
};
};
}