Files
flakes/flake.nix
2026-06-03 20:22:44 +01:00

26 lines
513 B
Nix

{
description = "Provides nix flakes for development";
outputs =
{ self }:
{
templates = {
default = self.templates.shell;
shell = {
path = ./shell;
description = "A base devshell to build off of";
};
rust = {
path = ./rust;
description = "A standard Rust development environment";
};
bun = {
path = ./bun;
description = "Flake for making a bun project";
};
};
};
}