From 5542b71d6ee34035ce33cb5b7cc9a4d019f3f898 Mon Sep 17 00:00:00 2001 From: leshy Date: Sat, 12 Jul 2025 04:54:50 +0300 Subject: [PATCH] Create running_without_devcontainer.md --- docs/running_without_devcontainer.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 docs/running_without_devcontainer.md diff --git a/docs/running_without_devcontainer.md b/docs/running_without_devcontainer.md new file mode 100644 index 0000000000..d06785e359 --- /dev/null +++ b/docs/running_without_devcontainer.md @@ -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 +```