Add audio/video settngs tools

main
Micke Nordin 1 year ago
parent 70848b23d4
commit b42cc68ef8

@ -3,6 +3,8 @@
hosts: localhost
connection: local
become: false
vars:
uid: "{{ lookup('env','USER') }}"
tasks:
- name: Install apt packages
become: true
@ -22,6 +24,8 @@
- nextcloud-desktop
- npm
- pass
- pavucontrol
- pipewire-audio
- pipx
- plocate
- python3-yamlfix
@ -35,6 +39,7 @@
- thunderbird
- unzip
- waybar
- wdisplays
- wget
- wl-clipboard
- wofi
@ -53,3 +58,7 @@
pkg: [nano]
state: absent
update_cache: true
- name: Enable pipewire-audio
ansible.builtin.command:
cmd: systemctl --user enable --now pipewire-pulse
creates: /home/{{ uid }}/.config/systemd/user/default.target.wants/pipewire-pulse.service

@ -0,0 +1,28 @@
---
- name: Set up various work related stuff
hosts: localhost
vars:
uid: "{{ lookup('env','USER') }}"
gitops: git+ssh://git@gitops.sunet.se
opsrepos:
- sunet-drive-ops
- mail-ops
- platform-ops
connection: local
become: false
tasks:
- name: Create sunet folders
become: true
ansible.builtin.file:
dest: /home/{{ uid }}/sunet/{{ item }}
state: directory
loop:
- docker
- ops
- puppet
- name: Get gitops ops-repos
ansible.builtin.command:
chdir: /home/{{ uid }}/sources/
cmd: git clone {{ gitops }}/{{ item }}
creates: /home/{{ uid }}/sunet/ops/{{ item }}
loop: "{{ opsrepos }}"
Loading…
Cancel
Save