20 lines
412 B
Nix
20 lines
412 B
Nix
{
|
|
description = "Flake Template Hell";
|
|
|
|
outputs = _: {
|
|
templates = {
|
|
"go" = {
|
|
path = ./templates/go;
|
|
description = "go flake template";
|
|
};
|
|
"rust" = {
|
|
path = ./templates/rust;
|
|
description = "rust flake template";
|
|
};
|
|
"haskell" = {
|
|
path = ./templates/haskell;
|
|
description = "haskell flake template";
|
|
};
|
|
};
|
|
};
|
|
}
|