dev-shells/modules/tailwindcss.nix

16 lines
186 B
Nix
Raw Normal View History

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