mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
531 B
Plaintext
18 lines
531 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# nix flake init
|
|
|
|
> Create a flake in the current directory from a template.
|
|
> More information: <https://nix.dev/manual/nix/stable/command-ref/new-cli/nix3-flake-init.html>.
|
|
|
|
- Create a new flake from the default template, in the current directory:
|
|
|
|
`nix flake init`
|
|
|
|
- Create a new flake with a specified template (see `nix flake show` for information about templates):
|
|
|
|
`nix flake init {{[-t|--template]}} templates#{{your_template}}`
|