adding fedora stuff

This commit is contained in:
2024-07-22 12:10:55 -07:00
parent 82cc422756
commit c58d299d18
138 changed files with 278 additions and 0 deletions

20
archive/dotfiles/tasks/main.yml Executable file
View File

@@ -0,0 +1,20 @@
---
- name: Clone dotfiles repository
git:
repo: "{{ dotfiles_remote }}"
dest: "{{ dotfiles_git_dir }}"
update: yes
- name: Create symlinks to dotfiles in .config
file:
src: "{{ dotfiles_git_dir }}/.config/{{ item }}"
dest: "{{ home }}/.config/{{ item }}"
state: link
loop: "{{ config_dotfiles }}"
- name: Create symlinks to dotfiles in $HOME
file:
src: "{{ dotfiles_git_dir }}/{{ item }}"
dest: "{{ home }}/{{ item }}"
state: link
loop: "{{ home_dotfiles }}"