33 lines
782 B
Nix
33 lines
782 B
Nix
{
|
|
description = "A collection of flake templates as starting points for your awesome projects";
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
templates = {
|
|
cpp = {
|
|
path = ./cpp;
|
|
description = "A nix based c++ development project skeleton with CMake";
|
|
};
|
|
|
|
python = {
|
|
path = ./python;
|
|
description = ''
|
|
Minimal starting project for nix-based python project development
|
|
'';
|
|
};
|
|
|
|
rust = {
|
|
path = ./rust;
|
|
description = ''
|
|
Minimal starting project for nix-based rust project development
|
|
'';
|
|
};
|
|
|
|
lua = {
|
|
path = ./lua;
|
|
description = ''
|
|
Minimal starting project for nix-based lua project development
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|