flake-templates/flake.nix
2023-08-15 10:33:31 -03:00

28 lines
639 B
Nix

{
description = "My collection of flake templates";
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 for a python project";
};
rust = {
path = ./rust;
description = "Template for a rust project, using oxalica/rust-overlay";
};
shell = {
path = ./shell;
description = "Template for a devShell";
};
};
};
}