This commit is contained in:
2024-06-22 08:44:12 -05:00
parent ac80926ff3
commit 32b72bde04
4 changed files with 26 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
exec "/usr/lib/polkit-kde-authentication-agent-1"
exec_always "pkill kanshi"
exec_always "pkill swayidle"
exec_always "pkill swaync"

View File

@@ -10,5 +10,8 @@
- name: install pacman
include_tasks: "./scripts/install_pacman.yml"
- name: install go apps
include_tasks: "./scripts/install_goapps.yml"
- name: configure systemd
include_tasks: "./scripts/configure_systemd.yml"

View File

@@ -51,6 +51,17 @@ required_packages_pacman:
- powertop
- iptables
- gnome-disk-utility
- ranger
- qemu-base
- virt-manager
- virt-viewer
- dnsmasq
- vde2
- bridge-utils
- openbsd-netcat
- dmidecode
- libguestfs
- polkit-kde-agent
flatpak_remote:
- {name: 'flathub', url: "https://dl.flathub.org/repo/flathub.flatpakrepo"}
@@ -64,3 +75,9 @@ required_packages_flatpak:
systemd_service:
- ly.service
- libvirtd.service
go_apps:
- github.com/jorgerojas26/lazysql@latest
- github.com/charmbracelet/vhs@latest
- github.com/charmbracelet/glow@latest

View File

@@ -0,0 +1,5 @@
- name: Installing Go apps
become_user: user
shell: "go install {{ item }}"
with_items: "{{ go_apps }}"
when: go_apps is defined