aboutsummaryrefslogtreecommitdiffstats
path: root/roles/workstation/tasks/os_archlinux.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/workstation/tasks/os_archlinux.yml')
-rw-r--r--roles/workstation/tasks/os_archlinux.yml51
1 files changed, 0 insertions, 51 deletions
diff --git a/roles/workstation/tasks/os_archlinux.yml b/roles/workstation/tasks/os_archlinux.yml
deleted file mode 100644
index 912d938..0000000
--- a/roles/workstation/tasks/os_archlinux.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-- name: append current user to system groups
- user:
- name: "{{ workstation_user }}"
- groups: "{{ item }}"
- append: true
- loop:
- - docker
- - wheel
- - video
- - audio
-
-- name: enable and start pipewire
- systemd:
- name: "{{ item }}"
- scope: user
- enabled: true
- state: started
- become: true
- become_method: su
- become_user: "{{ workstation_user }}"
- loop:
- - pipewire
- - pipewire-pulse
- - pipewire-media-session
- when: ansible_service_mgr == "systemd"
-
-- name: ensure that dhcpcd is started
- service:
- name: dhcpcd
- state: started
- enabled: true
-
-- name: enable battery optimization
- include_tasks: tlp.yml
- when: ansible_form_factor in ["Laptop", "Notebook"]
-
-- name: include virtualization setup
- include_tasks: libvirt.yml
-
-- name: include dockerd setup
- include_tasks: dockerd.yml
-
-- name: retrieve installed packages
- package_facts:
- register: package_facts
-
-- name: install yay
- include_tasks: yay.yml
- when:
- - "'yay' not in package_facts.ansible_facts.packages"
- - "'yay-bin' not in package_facts.ansible_facts.packages"
remember that computers suck.