31 lines
534 B
YAML
31 lines
534 B
YAML
---
|
|
- name: install base packages
|
|
apt:
|
|
name:
|
|
- git
|
|
- htop
|
|
- lm-sensors
|
|
- neovim
|
|
- rxvt-unicode
|
|
- tmux
|
|
- zsh
|
|
state: present
|
|
|
|
- name: set urxvt as default terminal emulator
|
|
alternatives:
|
|
name: x-terminal-emulator
|
|
path: /usr/bin/urxvt
|
|
|
|
- name: set neovom as default editor
|
|
alternatives:
|
|
name: editor
|
|
path: /usr/bin/nvim
|
|
|
|
- name: set persistent journal
|
|
ini_file:
|
|
path: /etc/systemd/journald.conf
|
|
section: Journal
|
|
option: Storage
|
|
value: persistent
|
|
|