https://github.com/tfc/flake-templates
My personal collection of Nix Flake templates
https://github.com/tfc/flake-templates
Last synced: about 1 year ago
JSON representation
My personal collection of Nix Flake templates
- Host: GitHub
- URL: https://github.com/tfc/flake-templates
- Owner: tfc
- Created: 2022-10-28T08:04:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-28T08:11:32.000Z (over 3 years ago)
- Last Synced: 2025-06-20T14:08:48.946Z (about 1 year ago)
- Language: Nix
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flake Templates
This is my personal collection of Nix Flake templates
## Usage
First, have a look what templates are there:
```sh
$ nix flake show github:tfc/flake-templates
github:tfc/flake-templates/eb16f12b4dd35baae40dfe1a02bad16b2f243d92
├───defaultTemplate: template: A PureScript Project Template
└───templates
└───purescript: template: A PureScript Project Template
```
Then, create a project folder and fork off your project from a template:
```sh
$ mkdir my-project && cd my-project
$ nix flake init -t github:tfc/flake-templates#purescipt
...
```
Now you can work as described by the template's welcome message.