|
autoinstall: |
|
version: 1 |
|
|
|
packages: |
|
- vim |
|
- stow # a symlink farm manager |
|
- pass # uses GPG keys to encrypt passwords, which are stored in `$PASSWORD_STORE_DIR` or ~/.password-store by default |
|
- htop |
|
- git |
|
- zsh |
|
- fzf # fuzzy finder CAVEAT: check if fzf version is greater than or equal to `0.48.0`, otherwise the `--zsh` option in this line https://github.com/tapyu/dotfiles/blob/4a3a599a8848a757ef6b972b65224b9678052612/zsh/.config/zsh/zshrc.sh#L73 will break. SEE: https://github.com/junegunn/fzf/issues/3703 |
|
- apt-transport-https |
|
- curl # deb-get dependencies |
|
- lsb-release # |
|
- wget # |
|
- apt-file # search for a package that provides a specific file |
|
- ttf-mscorefonts-installer # Microsoft True Type Core Fonts for the Web including: Andale Mono, Arial Black, Arial (Bold, Italic, Bold Italic), Comic Sans MS (Bold), Courier New (Bold, Italic, Bold Italic), Georgia (Bold, Italic, Bold Italic), Impact, Times New Roman (Bold, Italic, Bold Italic), Trebuchet (Bold, Italic, Bold Italic), Verdana (Bold, Italic, Bold Italic), Webdings |
|
- libyaml-tiny-perl # HACK: fix latexindent error (see https://stackoverflow.com/a/77425816/23333162) |
|
- libfile-homedir-perl # |
|
- moreutils # This is a growing collection of the Unix tools that nobody thought to write long ago, when Unix was young -> `combine`, `pee`, `sponge`, ... |
|
- gawk # Full-featured GNU implementation of `awk`. The default `awk` implementation is `mawk`, which is a lightweight and fast implementation of `awk` focused on speed and minimalism. CAVEAT: `awk` should symlink to `gawk` as soon as it is installed. If it is not, run `sudo update-alternatives --config awk` |
|
- gh # github-cli # CAVEAT: you should run `gh auth login` before |
|
- rar |
|
- unrar |
|
- tree |
|
- tesseract-ocr # required for `ocrmypdf` % SEE: https://ocrmypdf.readthedocs.io/en/latest/languages.html#installing-additional-language-packs |
|
- tesseract-ocr-por # to OCR in pt-br, run `ocrmypdf -l por in.pdf -o out.pdf` |
|
- ripgrep |
|
- pdfgrep |
|
- screenkey |
|
- nodejs # node.js: JavaScript runtime environment. When you install a npm package, that requires Node.js to run as it is a JavaScript-based program. |
|
- npm # npm: stands for "Node Package Manager." It is the default package manager for Node.js;npx: a package runner tool that comes with npm. It allows you to execute Node.js packages directly without having to install them globally or locally. |
|
- lua5.4 # install the Lua programming language and its package manager (LuaRocks). CAVEAT: This approach doesn't seem too consistent, 1: `lua5.4` pkg version will become absolete and there is no apprent way to install the latest lua version as there is no `lua` pkg in the `apt` command; 2- the `luarocks` pkg is compatible with `lua` of versions from 5.1 to 5.4, you must assure that `luarocks` you are using is compatible with the your `lua` version. See: https://www.reddit.com/r/lua/comments/1agh999/is_there_rustuplike_for_installing_and_managing/ https://luarocks.org/#quick-start https://www.lua.org/download.html |
|
- luarocks # |
|
- python-is-python3 # a mere symlink to /usr/bin/python |
|
- python3-pip # a mere symlink from `python3 -m pip` to `/usr/bin/pip` |
|
- rename # rename 's/search/replace/g' CLI command |
|
- xtrlock # keyboard locker (unlock it with the computer password) |
|
- cmake # C/C++: CMake |
|
- clang-format # C/C++: formatter |
|
- valgrind # C/C++: A memory profiler that can detect memory leaks, memory corruption, and other memory-related issues. |
|
- rclone # NOTE: for the first try, you must run `rclone config reconnect books:; rclone sync --verbose books:/books ~/books` |
|
- zoxide |
|
- cloc # count line of code (cloc): git utils to analyze the number lines in a repo (also see the online version: https://codetabs.com/count-loc/count-loc-online.html) |
|
- pipx # tool for installing and running Python applications in isolated environments, so it's particularly useful for command-line tools or applications you want to run independently, without interfering with other projects or system-wide Python installations. |
|
- pkg-config # HACK: fix "failed to compile cargo-update" SEE: https://github.com/sfackler/rust-openssl/issues/855 |
|
- libssl-dev # |
|
# GUI |
|
- gnome-tweaks |
|
- gnuradio |
|
- gnome-clocks # timer, alarms, and stopwatch |
|
- gnome-shell-extensions |
|
- usb-creator-gtk # create bootable Linux USBs |
|
- thunderbird # an email client |
|
- obs-studio |
|
- diodon # GTK+ clipboad manager |
|
- nnn |
|
|
|
snaps: # TODO: avoid using snaps |
|
- name: helix # NOTE: at the moment, helix has no way to be installed on Ubuntu but via snap |
|
classic: true |
|
- name: telegram-desktop |
|
- name: thunderbird # NOTE: running thunderbird from the apt install prompts "Command '/usr/bin/thunderbird' requires the thunderbird snap to be installed." |
|
|
|
interactive-sections: |
|
- storage |
|
- identity |
|
|
|
storage: |
|
layout: |
|
name: direct |
|
|
|
identity: |
|
hostname: ${HOSTNAME} |
|
password: "${ADMIN_PASSWORD}" |
|
username: ${ADMIN_USER} |
|
realname: Rubem Vasconcelos Pacelli |
|
|
|
keyboard: |
|
layout: us |
|
toggle: null # lwin_toggle # TODO: add keyboard layout |
|
variant: '' # alt-intl # (?) |
|
|
|
locale: en_US.UTF-8 # broader configuration that defines various aspects of the system's behavior based on regional and linguistic preferences, such as language preferences, date/time formats, currency formats, and character encoding |
|
timezone: America/Recife |
|
|
|
source: |
|
search_drivers: true |
|
codecs: |
|
install: true |
|
drivers: |
|
install: true |
|
|
|
# late-commands: |
|
# - curtin in-target -- apt-get autoremove -y |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/initial_settings.sh | bash |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/without_pkg_manager.sh | bash |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/python_packages_install.sh | bash |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/deb_get_install.sh | bash |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/cargo_install_crates.sh | bash |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/npm_install.sh | bash |
|
# - | |
|
# curtin in-target -- curl -sSL https://gist.githubusercontent.com/tapyu/3cbf2ed896c7cdd2a675bbe1a5e4c2e8/raw/gnome_setup.sh | bash |
|
|
|
|
|
error-commands: |
|
- tail -200 /var/log/syslog |