Init
This commit is contained in:
26
flake.nix
Normal file
26
flake.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user