dev-shells/modules/tailwindcss.nix
2025-06-23 00:18:33 +01:00

17 lines
293 B
Nix

{
perSystem =
{ pkgs, ... }:
{
devShells.tailwindcss = pkgs.mkShell {
packages = with pkgs; [
tailwindcss-language-server
tailwindcss_4
watchman
];
shellHook = ''
tailwindcss --help
'';
};
};
}