dev-shells/modules/tailwindcss.nix

14 lines
195 B
Nix
Raw Normal View History

2025-06-22 21:51:10 +01:00
{ lib, pkgs }:
2025-06-22 21:11:19 +01:00
pkgs.mkShell {
packages = with pkgs; [
tailwindcss-language-server
tailwindcss_4
watchman
];
2025-06-22 21:51:10 +01:00
shellHook = ''
${lib.getExe pkgs.tailwindcss_4} --help
'';
2025-06-22 21:11:19 +01:00
}