Create NetworkManager service

This commit is contained in:
mustard 2025-02-28 00:22:16 +01:00
parent 4e9107fa66
commit b88992cb13

View file

@ -61,12 +61,17 @@
path: '/etc/dconf/db/local.d/locks'
state: 'directory'
mode: '0755'
- name: Fix XDG portals
- name: Create XDG portals directory
ansible.builtin.file:
path: '/etc/xdg-desktop-portal'
state: 'directory'
mode: '0755'
- name: Create /etc/systemd/system/NetworkManager.service.d
ansible.builtin.file:
path: '/etc/systemd/system/NetworkManager.service.d'
state: 'directory'
mode: '0755'
- name: Copy dconf files + xdg-desktop-portals fix + Network manager
ansible.builtin.copy:
src: '{{ item }}'