flake-templates/flake.nix
2023-07-20 12:24:43 -03:00

24 lines
531 B
Nix

{
description = "My collection of flake templates";
outputs = { self }: {
templates = {
package = {
path = ./package;
description = "Template for a nix package";
};
python = {
path = ./python;
description = "Template to python project";
};
rust = {
path = ./rust;
description = "Rust template, using oxalica/rust-overlay";
};
shell = {
path = ./shell;
description = "Template for a devShell";
};
};
};
}