advent of code 2025 in ts and nix
1# Advent of Code 2025 - Kieran's way
2
3
4
5This contains my solutions to advent of code 2025 in mostly `ts` or `nix` depending on how lazy I'm feeling that day.
6
7## Running Solutions
8
9Either you can run the days manually or you can use direnv and the `aoc` tui I made!
10
11```bash
12echo "use flake" >> .envrc && direnv allow
13```
14
15the rather boring manual way:
16
17```bash
18cd ts/01 && bun run index.ts
19nix-instantiate --eval --strict nix/01/solution.nix
20```
21
22The main repo is [the tangled repo](https://tangled.org/dunkirk.sh/aoc-2025) and the github is just a mirror.
23
24<p align="center">
25 <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/line-break.svg" />
26</p>
27
28<p align="center">
29 © 2025-present <a href="https://github.com/taciturnaxolotl">Kieran Klukas</a>
30</p>
31
32<p align="center">
33 <a href="https://github.com/taciturnaxolotl/aoc-2025/blob/main/LICENSE.md"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a>
34</p>