Added C template

This commit is contained in:
William 2023-08-15 10:33:31 -03:00
parent 3950d3fe20
commit a634e932f6
5 changed files with 43 additions and 2 deletions

View file

@ -3,17 +3,21 @@
outputs = { self }: {
templates = {
c = {
path = ./c;
description = "Template for a C project";
};
package = {
path = ./package;
description = "Template for a nix package";
};
python = {
path = ./python;
description = "Template to python project";
description = "Template for a python project";
};
rust = {
path = ./rust;
description = "Rust template, using oxalica/rust-overlay";
description = "Template for a rust project, using oxalica/rust-overlay";
};
shell = {
path = ./shell;