day 6: init

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-12-06 19:34:16 +05:30
parent f40d46adbb
commit ba485f4cd3
3 changed files with 54 additions and 1 deletions

View File

@@ -45,7 +45,7 @@
name = n: "day${(if n < 10 then "0" else "") + toString n}";
in
with pkgs.lib;
genAttrs (map name (range 1 5)) (n: {
genAttrs (map name (range 1 6)) (n: {
type = "app";
program = "${self'.packages.aoc2025}/bin/${n}";
});