Files
flakes/flake.nix
2025-12-25 15:01:04 -07:00

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;
};
}