2023-10-12 15:15:57 +02:00
|
|
|
{
|
|
|
|
description = "Some flake templates";
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
template.minimum = {
|
|
|
|
path = ./minimum;
|
|
|
|
description = "Minimal sane flake";
|
|
|
|
welcomeText = "mjau‼";
|
|
|
|
};
|
2023-10-12 16:08:58 +02:00
|
|
|
template.rust = {
|
|
|
|
path = ./rust;
|
|
|
|
description = "Minimal flake for rust with overlay and devshell";
|
|
|
|
welcomeText = "mjau 🦀🦀🦀";
|
|
|
|
};
|
2023-10-12 15:15:57 +02:00
|
|
|
};
|
|
|
|
}
|