linux-config/roles/tmux_user/tasks/main.yml
Sagi Dayan 26e5b1ea42
Major update - move to symlinks for some dotfiles.
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-03-27 14:09:11 +02:00

14 lines
289 B
YAML

- name: Install tmux
become: true
package:
name: tmux
state: present
- name: Linking up tmux config folder
file:
src: "{{ playbook_dir }}/files/dotfiles/tmux"
dest: ~/.config/tmux
state: link
owner: "{{ ansible_user_id }}"
group: "{{ ansible_user_id }}"