dev-shells/modules/tailwindcss.nix

18 lines
293 B
Nix
Raw Normal View History

2025-06-23 00:14:26 +01:00
{
perSystem =
{ pkgs, ... }:
{
devShells.tailwindcss = pkgs.mkShell {
packages = with pkgs; [
tailwindcss-language-server
tailwindcss_4
watchman
];
2025-06-22 21:11:19 +01:00
2025-06-23 00:14:26 +01:00
shellHook = ''
tailwindcss --help
'';
};
};
2025-06-22 21:11:19 +01:00
}