templates/flake.nix

14 lines
272 B
Nix
Raw Normal View History

2022-08-31 23:20:14 +03:00
{
description = "My personal templates";
outputs = { self }: {
templates = {
2022-08-31 23:24:24 +03:00
base-flake = {
path = ./base-flake;
description = "An empty flake for each default system";
};
2022-08-31 23:20:14 +03:00
};
defaultTemplate = self.templates.base-flake;
};
}