flake-templates/flake.nix

29 lines
639 B
Nix
Raw Permalink Normal View History

2023-03-29 16:01:15 -03:00
{
description = "My collection of flake templates";
outputs = { self }: {
templates = {
2023-08-15 10:33:31 -03:00
c = {
path = ./c;
description = "Template for a C project";
};
2023-04-06 12:29:12 -03:00
package = {
path = ./package;
description = "Template for a nix package";
};
python = {
2023-07-20 12:24:43 -03:00
path = ./python;
2023-08-15 10:33:31 -03:00
description = "Template for a python project";
};
2023-03-29 16:01:15 -03:00
rust = {
2023-04-05 14:39:47 -03:00
path = ./rust;
2023-08-15 10:33:31 -03:00
description = "Template for a rust project, using oxalica/rust-overlay";
2023-03-29 16:01:15 -03:00
};
2023-04-06 12:31:14 -03:00
shell = {
path = ./shell;
description = "Template for a devShell";
};
2023-03-29 16:01:15 -03:00
};
};
2023-03-29 16:04:14 -03:00
}