2020-12-23 14:19:53 +02:00
|
|
|
R""(
|
|
|
|
|
|
|
|
# Examples
|
|
|
|
|
|
|
|
* Create a flake using the default template:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix flake init
|
|
|
|
```
|
|
|
|
|
|
|
|
* List available templates:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix flake show templates
|
|
|
|
```
|
|
|
|
|
|
|
|
* Create a flake from a specific template:
|
|
|
|
|
|
|
|
```console
|
|
|
|
# nix flake init -t templates#simpleContainer
|
|
|
|
```
|
|
|
|
|
|
|
|
# Description
|
|
|
|
|
|
|
|
This command creates a flake in the current directory by copying the
|
|
|
|
files of a template. It will not overwrite existing files. The default
|
2021-03-26 17:14:38 +02:00
|
|
|
template is `templates#defaultTemplate`, but this can be overridden
|
2020-12-23 14:19:53 +02:00
|
|
|
using `-t`.
|
|
|
|
|
|
|
|
# Template definitions
|
|
|
|
|
|
|
|
A flake can declare templates through its `templates` and
|
|
|
|
`defaultTemplate` output attributes. A template has two attributes:
|
|
|
|
|
|
|
|
* `description`: A one-line description of the template, in CommonMark
|
|
|
|
syntax.
|
|
|
|
|
|
|
|
* `path`: The path of the directory to be copied.
|
|
|
|
|
2022-02-17 20:59:32 +02:00
|
|
|
* `welcomeText`: A block of markdown text to display when a user initializes a
|
|
|
|
new flake based on this template.
|
2022-02-15 18:50:14 +02:00
|
|
|
|
|
|
|
|
2020-12-23 14:19:53 +02:00
|
|
|
Here is an example:
|
|
|
|
|
|
|
|
```
|
|
|
|
outputs = { self }: {
|
|
|
|
|
|
|
|
templates.rust = {
|
|
|
|
path = ./rust;
|
|
|
|
description = "A simple Rust/Cargo project";
|
2022-02-15 18:50:14 +02:00
|
|
|
welcomeText = ''
|
2022-02-17 20:59:32 +02:00
|
|
|
# Simple Rust/Cargo Template
|
|
|
|
## Intended usage
|
|
|
|
The intended usage of this flake is...
|
|
|
|
|
|
|
|
## More info
|
|
|
|
- [Rust language](https://www.rust-lang.org/)
|
|
|
|
- [Rust on the NixOS Wiki](https://nixos.wiki/wiki/Rust)
|
|
|
|
- ...
|
2022-02-15 18:50:14 +02:00
|
|
|
'';
|
2020-12-23 14:19:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
templates.defaultTemplate = self.templates.rust;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
)""
|