dotfiles/templates/default.nix

25 lines
646 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-06-18 00:46:31 +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";
};
2023-01-19 22:02:39 +00:00
py-poetry = {
path = ./py-poetry;
description = "Python repository with poetry & poetry2nix";
};
2022-12-27 04:22:07 +00:00
}