27 lines
577 B
Nix
27 lines
577 B
Nix
{
|
|
description = "A collection of flake templates";
|
|
|
|
outputs = { self }: {
|
|
templates = {
|
|
node-pnpm = {
|
|
path = ./node-pnpm;
|
|
description = "Node.js with pnpm development environment";
|
|
};
|
|
go = {
|
|
path = ./go;
|
|
description = "Go development environment";
|
|
};
|
|
rust = {
|
|
path = ./rust;
|
|
description = "Rust development environment";
|
|
};
|
|
bun = {
|
|
path = ./bun;
|
|
description = "Bun development environment";
|
|
};
|
|
};
|
|
|
|
defaultTemplate = self.templates.node-pnpm;
|
|
};
|
|
}
|