dotfiles/templates/default.nix

20 lines
533 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,...
2023-01-13 06:42:21 +00:00
{ pkgs
, lib
, ...
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-31 08:40:26 +00:00
ts-turborepo = {
path = ./ts/turborepo;
description = "Typescript monorepo with tsconfig, eslint, but with minimal framework attached";
};
2022-12-27 04:22:07 +00:00
}