Monorepo for Tangled tangled.org
1

Configure Feed

Select the types of activity you want to include in your feed.

flake,appview: keep devshell asset copies out of the working copy

Signed-off-by: dawn <dawn@tangled.org>

author
dawn
date (Jul 23, 2026, 6:50 PM +0300) commit 512bb123 parent ade07640 change-id vssqollr
+14 -8
+3
appview/pages/static/.gitignore
··· 1 + * 2 + !.gitignore 3 + !topbar-search.js
+11 -8
flake.nix
··· 401 401 shellHook = '' 402 402 export CC=${pkgs.stdenv.cc}/bin/cc 403 403 export NODE_PATH=${tailwindcss-plugins}''${NODE_PATH:+:$NODE_PATH} 404 - mkdir -p appview/pages/static 405 - # temporary self-heal for workspaces that copied static assets as read-only 406 - [ -d appview/pages/static/icons ] && [ ! -w appview/pages/static/icons ] && chmod -R u+rwX appview/pages/static 407 - # no preserve is needed because watch-tailwind will want to be able to overwrite 408 - cp -fr --no-preserve=ownership,mode ${packages'.appview-static-files}/* appview/pages/static 409 - mkdir -p web/static 410 - rm -rf web/static/fonts web/static/logos 411 - cp -fr --no-preserve=ownership,mode ${packages'.web-static-files}/* web/static 404 + ( 405 + cd "$(git rev-parse --show-toplevel 2>/dev/null || pwd)" 406 + mkdir -p appview/pages/static 407 + # temporary self-heal for workspaces that copied static assets as read-only 408 + [ -d appview/pages/static/icons ] && [ ! -w appview/pages/static/icons ] && chmod -R u+rwX appview/pages/static 409 + # no preserve is needed because watch-tailwind will want to be able to overwrite 410 + cp -fr --no-preserve=ownership,mode ${packages'.appview-static-files}/* appview/pages/static 411 + mkdir -p web/static 412 + rm -rf web/static/fonts web/static/logos 413 + cp -fr --no-preserve=ownership,mode ${packages'.web-static-files}/* web/static 414 + ) 412 415 export TANGLED_OAUTH_CLIENT_KID="$(date +%s)" 413 416 export TANGLED_OAUTH_CLIENT_SECRET="$(${packages'.goat}/bin/goat key generate -t P-256 | grep -A1 "Secret Key" | tail -n1 | awk '{print $1}')" 414 417 # Make xcrun (Nix stub) able to find ld from the system Command Line Tools.