Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexcaza/flake-templates
A collection of personal nix flake templates
https://github.com/alexcaza/flake-templates
Last synced: 4 days ago
JSON representation
A collection of personal nix flake templates
- Host: GitHub
- URL: https://github.com/alexcaza/flake-templates
- Owner: alexcaza
- Created: 2024-05-03T20:56:45.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-08T23:53:17.000Z (3 months ago)
- Last Synced: 2024-08-10T01:39:09.373Z (3 months ago)
- Language: Nix
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Personal flake templates
A collection of flake templates to be used for new projects.
## Typescript + Node
Uses typescript, pnpm and nodejs.
```bash
nix flake init -t github:alexcaza/flake-templates#node-ts
```## Bun
Barebones broject that uses bun and playwright.
```
nix flake init -t github:alexcaza/flake-templates#bun
```## Rust
Basic rust project using [oxalica/rust-overlay](https://github.com/oxalica/rust-overlay) that uses `toolchain.toml` to set channel and components.
```
nix flake init -t github:alexcaza/flake-templates#rust
```## Go
Basic Go 1.22 project.
```
nix flake init -t github:alexcaza/flake-templates#go
```# Inpiration
Pulled the ideas from [akirak](https://github.com/akirak/flake-templates), [NixOS templates](https://github.com/NixOS/templates/tree/master) and [Leixb](https://github.com/Leixb/flake-templates).