diff --git a/ansible/roles/tmux/tasks/main.yml b/ansible/roles/tmux/tasks/main.yml index 46641f1..04e864c 100644 --- a/ansible/roles/tmux/tasks/main.yml +++ b/ansible/roles/tmux/tasks/main.yml @@ -13,7 +13,11 @@ clone: true single_branch: true depth: 1 -- name: Setup TMUX +- name: Setup TMUX for the unprivileged user copy: src: tmux/tmux.conf dest: "/$HOME/.tmux.conf" +- name: Setup TMUX for the root user + copy: + src: tmux/tmux.conf + dest: "/root/.tmux.conf"