templates/flake.nix

32 lines
839 B
Nix
Raw Normal View History

2022-08-31 23:20:14 +03:00
{
description = "My personal templates";
outputs = { self }: {
templates = {
2022-09-07 23:56:09 +03:00
# flakes
2022-09-07 01:17:06 +03:00
flake-base = {
path = ./flakes/base;
2022-08-31 23:24:24 +03:00
description = "An empty flake for each default system";
};
2022-09-07 01:17:06 +03:00
flake-rust = {
path = ./flakes/rust;
2022-09-06 00:01:28 +03:00
description = "Flake to develop, build and run a rust application";
};
2022-09-13 23:38:27 +03:00
flake-haskell = {
path = ./flakes/haskell;
description = "Flake to develop haskell application";
};
2022-09-08 17:53:22 +03:00
flake-jupyter = {
path = ./flakes/jupyter;
description = "Flake to configure jupyter lab";
};
2022-09-07 23:56:09 +03:00
# starters
starter-typescript = {
path = ./starters/typescript;
description = "Basic configuration for the typescript project";
};
2022-08-31 23:20:14 +03:00
};
2022-09-07 01:17:06 +03:00
defaultTemplate = self.templates.flake-base;
2022-08-31 23:20:14 +03:00
};
}