project-templates/flake.nix

18 lines
463 B
Nix

{
description = "Various project templates";
outputs = { nixpkgs, ... }: {
templates = {
rust-workspace = {
path = ./templates/rust/workspace;
description = "Cargo based rust project using a virtual workspace";
};
rust-lib = {
path = ./templates/rust/crate-lib;
description = "Cargo based rust library crate";
};
};
};
}