20 lines
428 B
Nix
20 lines
428 B
Nix
{
|
|
description = "My collection of flake templates";
|
|
|
|
outputs = { self }: {
|
|
templates = {
|
|
package = {
|
|
path = ./package;
|
|
description = "Template for a nix package";
|
|
};
|
|
rust = {
|
|
path = ./rust;
|
|
description = "Rust template, using oxalica/rust-overlay";
|
|
};
|
|
shell = {
|
|
path = ./shell;
|
|
description = "Template for a devShell";
|
|
};
|
|
};
|
|
};
|
|
}
|