From 2bf7344994e7fa94de3966f3aa6c1c304d3b5133 Mon Sep 17 00:00:00 2001 From: datalore Date: Sat, 8 Feb 2025 01:52:09 +0100 Subject: [PATCH] Fixed missing dirs and permissions --- playbook.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) 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