Files
flakes/flake.nix
2026-05-03 17:37:16 +01:00

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