Add tailwindcss

This commit is contained in:
Oliver Davies 2025-06-22 21:11:19 +01:00
parent c12dcc81fa
commit ebb3fb571f
2 changed files with 11 additions and 0 deletions

View file

@ -24,6 +24,8 @@
php82 = callPackage ./modules/php82.nix { inherit commonPhpPackages; };
php83 = callPackage ./modules/php83.nix { inherit commonPhpPackages; };
tailwindcss = callPackage ./modules/tailwindcss.nix { };
};
formatter.${system} = pkgs.nixfmt-rfc-style;

9
modules/tailwindcss.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs }:
pkgs.mkShell {
packages = with pkgs; [
tailwindcss-language-server
tailwindcss_4
watchman
];
}