templates/flake.nix
2023-10-12 16:11:25 +02:00

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 🦀🦀🦀";
};
};
}