From c5ad0c113a44926c2d83969c5f780997cf2583d6 Mon Sep 17 00:00:00 2001 From: Isaac Corbrey Date: Wed, 10 Sep 2025 21:24:40 +0000 Subject: [PATCH] flake.nix: use `--watch=always` for tailwind watcher This forces the watcher to stay alive when running non-interactively (e.g. when run from within Tilt). Signed-off-by: Isaac Corbrey --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index efc235d6..0bbd02e2 100644 --- a/flake.nix +++ b/flake.nix @@ -187,7 +187,7 @@ tailwind-watcher = pkgs.writeShellScriptBin "run" '' - ${pkgs.tailwindcss}/bin/tailwindcss -w -i input.css -o ./appview/pages/static/tw.css + ${pkgs.tailwindcss}/bin/tailwindcss --watch=always -i input.css -o ./appview/pages/static/tw.css ''; in { fmt = { -- 2.51.2