File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change
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/ )
You can’t perform that action at this time.
0 commit comments