Skip to content

Commit

Permalink
Update autoinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjaap committed Mar 2, 2025
1 parent 4b91225 commit ea3fd64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 4 additions & 3 deletions autoinstall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ autoinstall:
- name: firefox
- name: gcolor3
- name: postman
- name: phpstorm
- name: spotify
- name: sqlitebrowser
- name: steam
Expand All @@ -79,7 +80,7 @@ autoinstall:
- curtin in-target --target=/target -- bash -c "wget -qO- https://dl.brave.com/install.sh | sh"

# Installing Warp
- curtin in-target --target=/target -- /bin/bash -c "wget --content-disposition -O /tmp/warp.deb 'https://app.warp.dev/download?package=deb' && dpkg -i /tmp/warp.deb"
- curtin in-target --target=/target -- bash -c "wget --content-disposition -O /tmp/warp.deb 'https://app.warp.dev/download?package=deb' && dpkg -i /tmp/warp.deb"

# Raise inotify watches limit
- curtin in-target --target=/target -- sh -c 'echo "fs.inotify.max_user_watches=524288" >> /etc/sysctl.conf'
Expand Down Expand Up @@ -109,10 +110,10 @@ autoinstall:
apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin'

# Install oh-my-zsh
- curtin in-target --target=/target -- sh -c "$(wget -qO- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- curtin in-target --target=/target -- bash -c "wget -qO- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh | bash"

# Install nvm
- curtin in-target --target=/target -- wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
- curtin in-target --target=/target -- bash -c "wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash"

# Installing Gnome extensions
#- curtin in-target --target=/target -- gnome-extensions enable [email protected]
Expand Down
2 changes: 0 additions & 2 deletions development/development.vars.make
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
include dns/dns.vars.make

DOCKER_COMPOSE_DEVELOPMENT := $(shell echo "$$HOME/development")
DOCKER_COMPOSE_DEVELOPMENT_WORKSPACE := $(shell dev workspace 2>/dev/null || echo "$(DOCKER_COMPOSE_DEVELOPMENT)/workspace")
DOCKER_COMPOSE_DEVELOPMENT_WORKSPACE_BIN = $(DOCKER_COMPOSE_DEVELOPMENT_WORKSPACE)/bin
Expand Down

0 comments on commit ea3fd64

Please sign in to comment.