Skip to content

Commit da14d2a

Browse files
authored
Update Nix commands to remove experimental features
Removed experimental features flag from Nix commands in README.
1 parent 1c20651 commit da14d2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ Once in the shell, you can call `cabal run` to start the development server and
2020
This will also build the prerendered HTML.
2121

2222
```bash
23-
$ nix develop .#wasm --command bash -c "make" --experimental-features 'nix-command flakes'
23+
$ nix develop .#wasm --command bash -c "make"
2424
```
2525

2626
### Build (JavaScript)
2727

2828
```bash
29-
$ nix develop .#ghcjs --command bash -c "build" --experimental-features 'nix-command flakes'
29+
$ nix develop .#ghcjs --command bash -c "build"
3030
```
3131

3232
### Serve
3333

3434
To host the built application you can call `serve`
3535

3636
```bash
37-
$ nix develop .#wasm --command bash -c "serve" --experimental-features 'nix-command flakes'
37+
$ nix develop .#wasm --command bash -c "serve"
3838
```
3939

4040
### Clean

0 commit comments

Comments
 (0)