diff --git a/hosts/pinwheel/configuration.nix b/hosts/pinwheel/configuration.nix index 3bb24ec..0dec871 100644 --- a/hosts/pinwheel/configuration.nix +++ b/hosts/pinwheel/configuration.nix @@ -31,6 +31,7 @@ ./modules/calibre ./modules/go ./modules/nix + ./modules/javascript ./modules/spotify ./modules/podman ./modules/k8s diff --git a/hosts/pinwheel/modules/javascript/default.nix b/hosts/pinwheel/modules/javascript/default.nix new file mode 100644 index 0000000..021d404 --- /dev/null +++ b/hosts/pinwheel/modules/javascript/default.nix @@ -0,0 +1,6 @@ +{ pkgs, ...}: +{ + home-manager.users.alex = { + home.packages = [ pkgs.nodePackages.typescript-language-server ]; + }; +}