feat: initial commit — Ansible Fedora KDE setup
Flyttet fra .dotfiles/fedora/kde/ansible/ til eget repo. - site.yml som hovedindgang til playbooken - tasks/ opdelt pr. ansvarsområde: rpmfusion, repos, dnf, flatpak, system - vars/ med pakkelister for nem redigering - kde_shortcuts/ med custom KDE genveje - README og installation.md fra .dotfiles
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
---
|
||||
- name: Fedora KDE Setup
|
||||
hosts: localhost
|
||||
connection: local
|
||||
become: true
|
||||
gather_facts: true
|
||||
vars_files:
|
||||
- vars/dnf_packages.yml
|
||||
- vars/flatpak_packages.yml
|
||||
tasks:
|
||||
- import_tasks: tasks/rpmfusion.yml
|
||||
- import_tasks: tasks/repos.yml
|
||||
- import_tasks: tasks/dnf_packages.yml
|
||||
- import_tasks: tasks/flatpak_packages.yml
|
||||
- import_tasks: tasks/system.yml
|
||||
Reference in New Issue
Block a user