Fixed missing dirs and permissions

This commit is contained in:
datalore 2025-02-08 01:52:09 +01:00
parent f5e63c697b
commit 2bf7344994

View File

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