feat(packages): add more commonly used packages
This commit is contained in:
parent
6686b3b1c0
commit
426f6b7132
2 changed files with 14 additions and 2 deletions
|
@ -2,12 +2,12 @@
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
become: yes
|
become: yes
|
||||||
apt: name={{ item }} state=latest update_cache=yes
|
apt: name={{ item }} state=latest update_cache=yes
|
||||||
loop: [git, git-crypt]
|
loop: [git, git-crypt, git-lfs]
|
||||||
|
|
||||||
- name: Install git (macOS)
|
- name: Install git (macOS)
|
||||||
when: ansible_os_family == "Darwin"
|
when: ansible_os_family == "Darwin"
|
||||||
homebrew: name={{ item }} state=latest
|
homebrew: name={{ item }} state=latest
|
||||||
loop: [git, git-crypt]
|
loop: [git, git-crypt, git-lfs]
|
||||||
|
|
||||||
- name: Create the git config directory
|
- name: Create the git config directory
|
||||||
file:
|
file:
|
||||||
|
|
|
@ -7,13 +7,18 @@
|
||||||
loop:
|
loop:
|
||||||
- curl
|
- curl
|
||||||
- exuberant-ctags
|
- exuberant-ctags
|
||||||
|
- ffmpeg
|
||||||
- gpg
|
- gpg
|
||||||
- htop
|
- htop
|
||||||
|
- nmap
|
||||||
- psmisc
|
- psmisc
|
||||||
- shellcheck
|
- shellcheck
|
||||||
- sqlite
|
- sqlite
|
||||||
- stow
|
- stow
|
||||||
- tree
|
- tree
|
||||||
|
- vifm
|
||||||
|
- wget
|
||||||
|
- youtube-dl
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -28,18 +33,25 @@
|
||||||
- ctags
|
- ctags
|
||||||
- curl
|
- curl
|
||||||
- exiftool
|
- exiftool
|
||||||
|
- ffmpeg
|
||||||
- findutils
|
- findutils
|
||||||
- gnu-sed
|
- gnu-sed
|
||||||
- gpg
|
- gpg
|
||||||
|
- grep
|
||||||
|
- gzip
|
||||||
- htop
|
- htop
|
||||||
- imagemagick
|
- imagemagick
|
||||||
- jupyter
|
- jupyter
|
||||||
|
- make
|
||||||
|
- nmap
|
||||||
- pstree
|
- pstree
|
||||||
- reattach-to-user-namespace
|
- reattach-to-user-namespace
|
||||||
- shellcheck
|
- shellcheck
|
||||||
- sqlite
|
- sqlite
|
||||||
- stow
|
- stow
|
||||||
- tree
|
- tree
|
||||||
|
- vifm
|
||||||
|
- wget
|
||||||
- youtube-dl
|
- youtube-dl
|
||||||
|
|
||||||
- name: Tap into homebrew/cask-fonts
|
- name: Tap into homebrew/cask-fonts
|
||||||
|
|
Loading…
Add table
Reference in a new issue