diff --git a/main.yml b/main.yml index 7986567..7d3f62e 100644 --- a/main.yml +++ b/main.yml @@ -1,8 +1,6 @@ - hosts: localhost roles: - common - - desktop-environment # Sway, App Launcher etc. + - desktop-environment # WM, App Launcher etc. - essential-tools # Thunar File Manager, Firefox, KeePassXC, Nextcloud Desktop - #- media-tools # Spotify, VLC - #- dev-tools # Visual Studio Code, Node.js - #- vm-tools # QEMU / KVM, libvirt, virt-manager \ No newline at end of file + #- media-tools # Spotify, VLC \ No newline at end of file diff --git a/roles/dev-tools/tasks/main.yml b/roles/dev-tools/tasks/main.yml deleted file mode 100644 index 9ea85bd..0000000 --- a/roles/dev-tools/tasks/main.yml +++ /dev/null @@ -1,27 +0,0 @@ -- name: Add Visual Studio Code repository - become: yes - deb822_repository: - name: vscode - types: deb - uris: https://packages.microsoft.com/repos/code - suites: stable - components: main - signed_by: https://packages.microsoft.com/keys/microsoft.asc - state: present - enabled: yes - -- name: Install packages - become: yes - apt: - state: latest - update_cache: true - install_recommends: false - name: - - code - - nodejs - - npm - - pinentry-gnome3 - -- name: Install yarn - become: yes - ansible.builtin.command: npm install -g yarn \ No newline at end of file diff --git a/roles/vm-tools/tasks/main.yml b/roles/vm-tools/tasks/main.yml deleted file mode 100644 index 3552c0f..0000000 --- a/roles/vm-tools/tasks/main.yml +++ /dev/null @@ -1,27 +0,0 @@ -- name: Install packages for qemu-kvm - become: yes - apt: - state: latest - install_recommends: false - name: - - qemu-kvm - - qemu-system - - libvirt-daemon - - libvirt-daemon-system - - ovmf - - virt-manager - -- name: Ensure group "libvirt" exists - become: yes - ansible.builtin.group: - name: libvirt - state: present - -- name: Add user to group "libvirt" - become: yes - ansible.builtin.user: - name: "{{ ansible_user_id }}" - state: present - groups: - - libvirt - append: true \ No newline at end of file