dotfiles/templates/default.nix

16 lines
379 B
Nix
Raw Normal View History

2022-12-27 04:51:32 +00:00
# TODO: templates should be able to have initial states like
# repo name, author,...
2022-12-27 04:22:07 +00:00
{pkgs
,lib
2022-12-27 04:51:32 +00:00
,...
2022-12-27 04:22:07 +00:00
}: {
2022-12-27 04:51:32 +00:00
rust = {
path = ./rust;
description = "Minimal Rust build template using Naersk, rust-overlay, rust-analyzer";
};
rust-monorepo = {
path = ./rust-monorepo;
2022-12-27 05:58:24 +00:00
description = "Opinionated Rust monorepo, extended from ./rust, using Cargo workspace";
2022-12-27 04:51:32 +00:00
};
2022-12-27 04:22:07 +00:00
}