mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
537 B
537 B
R""(
Examples
-
Create a flake using the default template in the directory
hello
:# nix flake new hello
-
List available templates:
# nix flake show templates
-
Create a flake from a specific template in the directory
hello
:# nix flake new hello -t templates#trivial
Description
This command creates a flake in the directory dest-dir
, which must
not already exist. It's equivalent to:
# mkdir dest-dir
# cd dest-dir
# nix flake init
)""