blob: dfb50da5fda2d8734bc9df7633fe75023dceb2b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# vim: ts=2
{
description = "A collection of nix flake templates for diffrent languages";
outputs = {self}: {
templates.rust = {
path = ./rust;
description = "A simple Rust/Cargo project";
welcomeText = "";
};
templates.rustToolchain = {
path = ./rust/toolchain.nix;
description = "A simple Rust/Cargo project with a diffrent toolchain";
welcomeText = "";
};
};
}
|