This repository has been archived on 2020-08-28. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-laptop/roles/packages/tasks/base.yml

19 lines
308 B
YAML

---
- name: install base packages
apt:
name: "{{ item }}"
state: present
with_items:
- git
- htop
- lm-sensors
- rxvt-unicode
- tmux
- vim-nox
- zsh
- name: set urxvt as default terminal emulator
alternatives:
name: x-terminal-emulator
path: /usr/bin/urxvt