Files
2025-01-07 19:47:50 +01:00

18 lines
321 B
YAML

- name: Install tmux
pacman:
name: "tmux"
state: present
when:
- ansible_os_family == "Archlinux"
- name: Install tmux
apt:
name: "tmux"
state: present
when:
- ansible_os_family == "Debian"
- name: Copy config file
copy:
src: tmux/tmux.conf
dest: /etc/tmux.conf
mode: "0644"