From 20c541761cd7b6eb4a5f3050ce2b9af9190aeb43 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Mon, 25 Sep 2023 21:47:08 +0200 Subject: [PATCH] pinwheel: Add module for `javascript` --- hosts/pinwheel/configuration.nix | 1 + hosts/pinwheel/modules/javascript/default.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 hosts/pinwheel/modules/javascript/default.nix 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 ]; + }; +}