diff --git a/roles/system/templates/Xresources.j2 b/roles/system/files/Xresources similarity index 100% rename from roles/system/templates/Xresources.j2 rename to roles/system/files/Xresources diff --git a/roles/system/templates/keepassxc.ini.j2 b/roles/system/files/keepassxc.ini similarity index 94% rename from roles/system/templates/keepassxc.ini.j2 rename to roles/system/files/keepassxc.ini index b3da15f..068f9ce 100644 --- a/roles/system/templates/keepassxc.ini.j2 +++ b/roles/system/files/keepassxc.ini @@ -30,3 +30,7 @@ UpperCase=true [SSHAgent] Enabled=true + +[Security] +ClearClipboardTimeout=30 +ClearSearch=false diff --git a/roles/system/tasks/main.yml b/roles/system/tasks/main.yml index 9ff04e3..d13e6c3 100644 --- a/roles/system/tasks/main.yml +++ b/roles/system/tasks/main.yml @@ -26,15 +26,15 @@ template: src: "{{ role_path }}/templates/.gitconfig.j2" dest: ~/.gitconfig -- name: Install Regolith Xresources file - template: - src: "{{ role_path }}/templates/Xresources.j2" +- name: Copy Xresources + copy: + src: "{{ role_path }}/files/Xresources" dest: ~/.config/regolith2/Xresources - name: Create keepassxc config directory file: path: ~/.config/keepassxc state: directory -- name: Install keepassxc.ini - template: - src: "{{ role_path }}/templates/keepassxc.ini.j2" +- name: Copy keepassxc.ini + copy: + src: "{{ role_path }}/files/keepassxc.ini" dest: ~/.config/keepassxc/keepassxc.ini