Monorepo for Tangled tangled.org
5

Configure Feed

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

nix: remove `fmt` app and use `formatter` flake output

thanks isabelroses.com

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
committer
Lewis
date (May 29, 2026, 2:50 PM +0300) commit 9107f624 parent 4053d0e3 change-id mpksvmkz
+3 -5
+1 -1
.tangled/workflows/fmt.yml
··· 9 9 command: | 10 10 mkdir -p bobbin/crates/types/src/_lex 11 11 [ -f bobbin/crates/types/src/_lex/lib.rs ] || : > bobbin/crates/types/src/_lex/lib.rs 12 - nix run .#fmt -- --ci 12 + nix fmt -- --ci
+2 -4
flake.nix
··· 261 261 ${pkgs.tailwindcss}/bin/tailwindcss --watch=always -i input.css -o ./appview/pages/static/tw.css 262 262 ''; 263 263 in { 264 - fmt = { 265 - type = "app"; 266 - program = pkgs.lib.getExe packages'.treefmt-wrapper; 267 - }; 268 264 watch-appview = { 269 265 type = "app"; 270 266 program = toString (pkgs.writeShellScript "watch-appview" '' ··· 405 401 406 402 services.tangled.spindle.package = lib.mkDefault self.packages.${pkgs.stdenv.hostPlatform.system}.spindle; 407 403 }; 404 + 405 + formatter = forAllSystems (system: self.packages.${system}.treefmt-wrapper); 408 406 }; 409 407 }