nix-templates/flake.nix

19 lines
299 B
Nix

{
description = "Samae's collection of flake templates";
outputs = { self }: {
templates = {
haskell-aoc = {
path = ./aoc23;
description = "A full-featured, small nix+haskell AoC template";
};
};
defaultTemplate = self.templates.haskell-aoc;
};
}