17 lines
377 B
Nix
17 lines
377 B
Nix
{
|
|
description = "Some flake templates";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
templates.minimum = {
|
|
path = ./minimum;
|
|
description = "Minimal sane flake";
|
|
welcomeText = "mjau‼";
|
|
};
|
|
templates.rust = {
|
|
path = ./rust;
|
|
description = "Minimal flake for rust with overlay and devshell";
|
|
welcomeText = "mjau 🦀🦀🦀";
|
|
};
|
|
};
|
|
}
|