flake-templates/flake.nix
2023-04-05 14:39:47 -03:00

16 lines
342 B
Nix

{
description = "My collection of flake templates";
outputs = { self }: {
templates = {
hello = {
path = ./hello;
description = "Template including hello in shell packages";
};
rust = {
path = ./rust;
description = "Rust template, using oxalica/rust-overlay";
};
};
};
}