···11# seed
22nix flake templates
33+44+## Usage
55+Run either of the following commands:
66+```sh
77+$ nix flake new -t git+https://tangled.sh/@yemou.pink/seed#<template-name> <directory>
88+$ nix flake init -t git+https://tangled.sh/@yemou.pink/seed#<template-name>
99+```
1010+1111+Alternatively, add the following to your nix configuration:
1212+```nix
1313+nix.registry.seed.to = {
1414+ type = "git";
1515+ url = "https://tangled.sh/@yemou.pink/seed";
1616+};
1717+```
1818+and then run either of the following commands:
1919+```sh
2020+$ nix flake new -t seed#<template-name> <directory>
2121+$ nix flake init -t seed#<template-name>
2222+```