Skip to content

Commit 55bd3f1

Browse files
committed
add a readme
1 parent 80b2916 commit 55bd3f1

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.MD

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Nix Playground
2+
3+
A learning project exploring Nix and its capabilities for development environments and reproducible builds.
4+
5+
## What I've Learned
6+
7+
- Setting up a Nix development environment
8+
- Creating a basic React application with Nix
9+
- Using Nix flakes for project configuration
10+
11+
12+
## Getting Started
13+
14+
1. Enter the Nix development environment:
15+
```bash
16+
nix develop
17+
```
18+
19+
2. Install dependencies:
20+
```bash
21+
cd src
22+
yarn install
23+
```
24+
25+
3. Start the development server:
26+
```bash
27+
yarn start
28+
```
29+
30+
31+
## Resources
32+
33+
- [Nix Documentation](https://nixos.org/learn.html)
34+
- [Nix Flakes](https://nixos.wiki/wiki/Flakes)
35+
- [Vite + React](https://vitejs.dev/guide/)

0 commit comments

Comments
 (0)