1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-06 21:16:11 +02:00
github.com_the-nix-way_dev-.../flake.nix
2022-07-12 02:01:42 +02:00

23 lines
485 B
Nix

{
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";
};
rails = {
path = ./ruby-on-rails;
description = "Ruby on Rails development environment";
};
};
};
}