-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,10 @@ autoinstall: | |
name: lvm | ||
password: pleasechangemeasap | ||
|
||
interactive-sections: | ||
- network | ||
- identity | ||
|
||
packages: | ||
- build-essential | ||
- composer | ||
|
@@ -64,14 +68,18 @@ autoinstall: | |
- name: slack | ||
|
||
late-commands: | ||
# Resize 100GB partition to full space available | ||
- curtin in-target -- lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv | ||
- curtin in-target -- resize2fs /dev/mapper/ubuntu--vg-ubuntu--lv | ||
# Install Brave | ||
- curtin in-target --target=/target -- curl -fsS https://dl.brave.com/install.sh | sh | ||
# Installing Gnome extensions | ||
#- curtin in-target --target=/target -- gnome-extensions enable [email protected] | ||
#- curtin in-target --target=/target -- gnome-extensions enable [email protected] | ||
#- curtin in-target --target=/target -- gnome-extensions enable [email protected] | ||
# Installing Warp | ||
- curtin in-target --target=/target -- wget -O warp.dev https://app.warp.dev/download?package=deb | ||
- curtin in-target --target=/target -- apt install ./warp.dev | ||
- curtin in-target --target=/target -- wget -O warp.deb https://app.warp.dev/download?package=deb | ||
- curtin in-target --target=/target -- apt install ./warp.deb | ||
# Installing 1password-cli | ||
- curtin in-target --target=/target -- curl -sS https://downloads.1password.com/linux/keys/1password.asc | ||
- curtin in-target --target=/target -- gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg | ||
|