Files for my website bwc9876.dev
at main 16 lines 450 B view raw
1{ 2 inputs.flakelight.url = "github:nix-community/flakelight"; 3 outputs = {flakelight, ...}: 4 flakelight ./. ( 5 {lib, ...}: { 6 systems = lib.systems.flakeExposed; 7 formatters = pkgs: let 8 alejandra = "${pkgs.alejandra}/bin/alejandra ."; 9 typstyle = "${pkgs.typstyle}/bin/typstyle -i src/assets/resume.typ"; 10 in { 11 "*.nix" = alejandra; 12 "*.typ" = typstyle; 13 }; 14 } 15 ); 16}