diff --git a/playbook.yml b/playbook.yml index 8282850..b7acf33 100644 --- a/playbook.yml +++ b/playbook.yml @@ -30,6 +30,10 @@ dest: /etc/openvpn/client/lab.conf ignore_errors: true notify: Enable OpenVPN service + - name: Set shell to zsh + user: + name: datalore + shell: /bin/zsh become: true - name: Install AUR packages kewlfft.aur.aur: @@ -46,8 +50,9 @@ src: kitty.conf dest: ~/.config/kitty/kitty.conf - name: Create nvim directory - copy: + file: path: ~/.config/nvim + state: directory - name: Copy nvim config copy: src: init.lua @@ -57,14 +62,14 @@ src: zshrc dest: ~/.zshrc force: yes + - name: Create zellij directory + file: + path: ~/.config/zellij + state: directory - name: Copy zellij config copy: src: config.kdl dest: ~/.config/zellij/config.kdl - - name: Set shell to zsh - user: - name: datalore - shell: /bin/zsh - name: Clone SecLists git: clone: true