aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorKumar Damani <me@kumardamani.net>2026-09-05 18:27:14 +0000
committerKumar Damani <me@kumardamani.net>2026-09-05 18:27:14 +0000
commit6933d63895ee9c23319873a6020096ef7c4ee155 (patch)
tree515148f2bf882f48d8934933301b5dd3170a78b9 /README.md
parenta7ebfff33cf3ff1befca5dd13da872fc1b57e2e2 (diff)
cleanup readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md42
1 files changed, 1 insertions, 41 deletions
diff --git a/README.md b/README.md
index b2eaefe..c00ecd3 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
```bash
-stow -v -t ~ nix nixpkgs
+stow -v -t ~ nix home-manager
```
For updating a specific input only:
@@ -7,43 +7,3 @@ For updating a specific input only:
nix flake lock --update-input llm-agents
home-manager switch
```
-
-OrbStack usage:
-1. Create a debian 12 machine with the name `orb-deb` and user `kdma0` (default).
-2. Specify the follwing `cloud-init.yaml`:
-```yaml
-#cloud-config
-
-users:
- - name: kdam0
- homedir: /home/kdam0
- sudo: ["ALL=(ALL) NOPASSWD:ALL"]
- groups: users, admin, docker
-
-groups:
- - docker
-
-package_update: true
-packages:
- - curl
- - git
- - stow
- - xz-utils
- - locales-all
-
-write_files:
-- content: |
- #!/bin/bash
- HOME="/home/kdam0" sh <(curl -L https://nixos.org/nix/install) --daemon --yes
- path: /run/installer
- permissions: '0755'
-
-runcmd:
- - curl -fsSL https://get.docker.com | sh
- - /run/installer
- - su - kdam0 -c 'git clone "https://gitlab.com/kdam0/dotfiles-nix.git"'
- - su - kdam0 -c 'cd dotfiles-nix && stow -v -t ~ nix home-manager && git remote set-url origin git@gitlab.com:kdam0/dotfiles-nix.git'
- - su - kdam0 -c 'nix run home-manager/master switch'
- - chsh -s /home/kdam0/.nix-profile/bin/zsh kdam0
- - echo "machine is ready for use!"
-```