Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/running_without_devcontainer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
install nix,

https://nixos.wiki/wiki/Nix_Installation_Guide
```sh
sudo install -d -m755 -o $(id -u) -g $(id -g) /nix
curl -L https://nixos.org/nix/install | sh
```

install direnv
https://direnv.net/
```sh
apt-get install direnv
echo 'eval "$(direnv hook bash)"' >> ~/.bashrc
```

allow direnv in dimos will take a bit to pull the packages,
from that point on your env is standardized
```sh
cd dimos
direnv allow
```