My digital garden

Quartz sync: Jan 17, 2026, 3:52 AM

+4 -22
-1
.direnv/flake-inputs/gp4xvqds8y5ywaxmd97hr5fvx9ziihb2-source
··· 1 - /nix/store/gp4xvqds8y5ywaxmd97hr5fvx9ziihb2-source
+1
.direnv/flake-inputs/hkgfsgk5lhxij3jlf9155fdcdw9jhk75-source
··· 1 + /nix/store/hkgfsgk5lhxij3jlf9155fdcdw9jhk75-source
+2 -6
.github/workflows/deploy.yml
··· 22 22 with: 23 23 fetch-depth: 0 # Fetch all history for git info 24 24 - uses: canidae-solutions/lix-quick-install-action@v3 25 - - uses: rrbutani/use-nix-shell-action@v1 26 - with: 27 - devShell: .#ci 28 - - name: Install dependencies 25 + - name: Install dependencies and Build site 26 + shell: nix develop .#default --command bash {0} 29 27 run: | 30 28 bun install --frozen-lockfile 31 - - name: Build site 32 - run: | 33 29 bun quartz build 34 30 - name: Upload artifact 35 31 uses: actions/upload-pages-artifact@v3
+1 -15
flake.nix
··· 21 21 ] 22 22 }" 23 23 ''; 24 - 25 - devShells.ci.packages = pkgs: with pkgs; [ 26 - bun 27 - ]; 28 - 29 - devShells.ci.shellHook = pkgs: with pkgs; '' 30 - bun() { 31 - LD_LIBRARY_PATH="${ 32 - lib.makeLibraryPath [ 33 - stdenv.cc.cc.lib 34 - ] 35 - }" command bun "$@" 36 - } 37 - ''; 38 - }; 24 + }; 39 25 }