day 3: init

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-12-03 17:22:59 +05:30
parent e6a451e07d
commit d32a56e50b
4 changed files with 47 additions and 5 deletions

View File

@@ -39,13 +39,13 @@
};
};
packages.default = self'.packages.aoc2024;
packages.default = self'.packages.aoc2025;
apps =
let
name = n: "day${(if n < 10 then "0" else "") + toString n}";
in
with pkgs.lib;
genAttrs (map name (range 1 1)) (n: {
genAttrs (map name (range 1 3)) (n: {
type = "app";
program = "${self'.packages.aoc2025}/bin/${n}";
});