flakes/flake.nix

15 lines
345 B
Nix

{
description = "My collection of flake templates";
outputs = { }: {
trivial = {
path = ./trivial;
description = "The default flake template most non-specialised flakes should be based on";
};
fhs = {
path = ./fhs;
description = "A simple flake but creating an fhs compliant environment";
};
};
}