dev-templates/flake.nix

18 lines
364 B
Nix
Raw Normal View History

2022-07-12 01:17:54 +02:00
{
description = "Ready-made templates for easily creating flake-driven environments";
outputs = { self }: {
templates = {
go_1_17 = {
path = ./go1.17;
description = "Go 1.17 development environment";
};
go_1_18 = {
path = ./go1.18;
description = "Go 1.18 development environment";
};
};
};
}