workstation/roles/debian/tasks/packages-cli.yml

50 lines
891 B
YAML

---
- name: Install CLI packages
become: true
apt:
name: '{{ packages }}'
state: present
force_apt_get: yes
vars:
packages:
- apt-file
- ansible
- asciidoctor
- build-essential
- clang
- clang-format
- console-data
- curl
- dc
- debhelper
- devscripts
- dh-make
- dnsutils
- exfat-fuse
- exfat-utils
- fakeroot
- git
- gnupg
- groff
- lldb
- mc
- nftables
- nmap
- openssh-server
- packagekit
- python3
- python3-psutil
- ruby-asciidoctor-pdf
- sipcalc
- sqlite3
- sudo
- tlp
- tmux
- vim
- wordgrinder-ncurses
- zsh
- name: load /etc/profile in zsh
become: true
lineinfile:
path: /etc/zsh/zprofile
line: emulate sh -c 'source /etc/profile'