templates/flake.nix

18 lines
407 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-09-06 00:01:28 +03:00
rust-flake = {
path = ./rust-flake;
description = "Flake to develop, build and run a rust application";
};
2022-08-31 23:20:14 +03:00
};
defaultTemplate = self.templates.base-flake;
};
}