This commit is contained in:
2025-12-25 15:01:04 -07:00
parent 621a9d410b
commit ef69b83a6a
10 changed files with 183 additions and 0 deletions

26
flake.nix Normal file
View File

@@ -0,0 +1,26 @@
{
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;
};
}