Skip to content

Commit 9a673b3

Browse files
author
Szymon Masłowski
committed
docs: update readme to include info to restart nix-daemon
1 parent 7578a24 commit 9a673b3

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,22 @@ Daedalus - Cryptocurrency Wallet
3737
# If you are running on a Mac with Apple Silicon chip, but want to also build for Intel:
3838
extra-platforms = x86_64-darwin aarch64-darwin
3939
```
40-
41-
3. Run `nix develop` with a correct argument or by using existing `package.json` scripts to load a shell with all the correct versions of all the required dependencies for development, e.g.:
40+
41+
3. Are you a MacOS user? Reload nix-daemon.
42+
1. Stop the daemon
43+
```bash
44+
sudo launchctl remove org.nixos.nix-daemon
45+
```
46+
2. Verify it's not running (only grep process should be listed)
47+
```bash
48+
ps aux | grep nix-daemon
49+
```
50+
3. Start the daemon
51+
```bash
52+
sudo launchctl load /Library/LaunchDaemons/org.nixos.nix-daemon.plist
53+
```
54+
55+
4. Run `nix develop` with a correct argument or by using existing `package.json` scripts to load a shell with all the correct versions of all the required dependencies for development, e.g.:
4256
* `nix develop -L .#mainnet`
4357
* … which is equivalent to `yarn nix:mainnet`
4458

0 commit comments

Comments
 (0)