Monorepo for Tangled tangled.org

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 <icorbrey@gmail.com>

authored by isaaccorbrey.com and committed by anirudh.fi c5ad0c11 005cd178

Changed files
+1 -1
+1 -1
flake.nix
··· 187 187 tailwind-watcher = 188 188 pkgs.writeShellScriptBin "run" 189 189 '' 190 - ${pkgs.tailwindcss}/bin/tailwindcss -w -i input.css -o ./appview/pages/static/tw.css 190 + ${pkgs.tailwindcss}/bin/tailwindcss --watch=always -i input.css -o ./appview/pages/static/tw.css 191 191 ''; 192 192 in { 193 193 fmt = {