diff options
author | Aaditya Dhruv <aadityadhruv@mailbox.org> | 2023-11-28 02:53:36 +0000 |
---|---|---|
committer | Aaditya Dhruv <aadityadhruv@mailbox.org> | 2023-11-28 02:55:44 +0000 |
commit | 486298c62f5586dcd4904079c4633b000538c8b0 (patch) | |
tree | cf37705ce92d58d538d36020361e79604650e0ca | |
parent | b4f20596200dcd1d5801c391343b44c11d6955a6 (diff) |
Add become_user for config tasks
-rw-r--r-- | src/config/tasks/main.yaml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/config/tasks/main.yaml b/src/config/tasks/main.yaml index 4103663..00f83b4 100644 --- a/src/config/tasks/main.yaml +++ b/src/config/tasks/main.yaml @@ -7,29 +7,31 @@ - name: Setup oh-my-zsh become: true - become_user: aaditya + become_user: {{ config.username }} ansible.builtin.shell: 'sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended' ignore_errors: true - name: Setup zsh-autosuggestions become: true - become_user: aaditya + become_user: {{ config.username }} ansible.builtin.shell: 'git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions' ignore_errors: true - name: Setup zsh-syntax-highlighting become: true - become_user: aaditya + become_user: {{ config.username }} ansible.builtin.shell: 'git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting' ignore_errors: true - name: Setup powerlevel10k become: true - become_user: aaditya + become_user: {{ config.username }} ansible.builtin.shell: 'git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k' ignore_errors: true - name: Setup p10k, tmux and zshrc + become: true + become_user: {{ config.username }} ansible.builtin.copy: src: shell/{{ item }} dest: "/home/{{ config.username }}" @@ -40,6 +42,8 @@ - .tmux.conf - name: Setup vimrc and vim bundles + become: true + become_user: {{ config.username }} ansible.builtin.copy: src: shell/{{ item }} dest: "/home/{{ config.username }}" @@ -82,6 +86,8 @@ when: 'config.config.install_shell' - name: Install Dotfiles (Wayland) + become: true + become_user: {{ config.username }} ansible.builtin.copy: src: "{{ item }}" dest: "/home/{{ config.username }}/.config/" @@ -90,6 +96,8 @@ when: 'config.config.install_wayland' - name: Install Dotfiles (Xorg) + become: true + become_user: {{ config.username }} ansible.builtin.copy: src: "{{ item }}" dest: "/home/{{ config.username }}/.config/" @@ -98,6 +106,8 @@ when: 'config.config.install_xorg' - name: Install Dotfiles (All) + become: true + become_user: {{ config.username }} ansible.builtin.copy: src: "{{ item }}" dest: "/home/{{ config.username }}/.config/" |