20 lines
358 B
Nix
20 lines
358 B
Nix
{
|
|
description = "Provides nix flakes for development";
|
|
|
|
outputs =
|
|
{ self }:
|
|
{
|
|
templates = {
|
|
|
|
rust = {
|
|
path = ./rust;
|
|
description = "A standard Rust development environment";
|
|
};
|
|
bun = {
|
|
path = ./bun;
|
|
description = "Flake for making a bun project";
|
|
};
|
|
};
|
|
};
|
|
}
|