update
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
exec "/usr/lib/polkit-kde-authentication-agent-1"
|
||||||
exec_always "pkill kanshi"
|
exec_always "pkill kanshi"
|
||||||
exec_always "pkill swayidle"
|
exec_always "pkill swayidle"
|
||||||
exec_always "pkill swaync"
|
exec_always "pkill swaync"
|
||||||
|
|||||||
@@ -10,5 +10,8 @@
|
|||||||
- name: install pacman
|
- name: install pacman
|
||||||
include_tasks: "./scripts/install_pacman.yml"
|
include_tasks: "./scripts/install_pacman.yml"
|
||||||
|
|
||||||
|
- name: install go apps
|
||||||
|
include_tasks: "./scripts/install_goapps.yml"
|
||||||
|
|
||||||
- name: configure systemd
|
- name: configure systemd
|
||||||
include_tasks: "./scripts/configure_systemd.yml"
|
include_tasks: "./scripts/configure_systemd.yml"
|
||||||
|
|||||||
@@ -51,6 +51,17 @@ required_packages_pacman:
|
|||||||
- powertop
|
- powertop
|
||||||
- iptables
|
- iptables
|
||||||
- gnome-disk-utility
|
- gnome-disk-utility
|
||||||
|
- ranger
|
||||||
|
- qemu-base
|
||||||
|
- virt-manager
|
||||||
|
- virt-viewer
|
||||||
|
- dnsmasq
|
||||||
|
- vde2
|
||||||
|
- bridge-utils
|
||||||
|
- openbsd-netcat
|
||||||
|
- dmidecode
|
||||||
|
- libguestfs
|
||||||
|
- polkit-kde-agent
|
||||||
|
|
||||||
flatpak_remote:
|
flatpak_remote:
|
||||||
- {name: 'flathub', url: "https://dl.flathub.org/repo/flathub.flatpakrepo"}
|
- {name: 'flathub', url: "https://dl.flathub.org/repo/flathub.flatpakrepo"}
|
||||||
@@ -64,3 +75,9 @@ required_packages_flatpak:
|
|||||||
|
|
||||||
systemd_service:
|
systemd_service:
|
||||||
- ly.service
|
- ly.service
|
||||||
|
- libvirtd.service
|
||||||
|
|
||||||
|
go_apps:
|
||||||
|
- github.com/jorgerojas26/lazysql@latest
|
||||||
|
- github.com/charmbracelet/vhs@latest
|
||||||
|
- github.com/charmbracelet/glow@latest
|
||||||
|
|||||||
5
ansible/scripts/install_goapps.yml
Normal file
5
ansible/scripts/install_goapps.yml
Normal 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
|
||||||
Reference in New Issue
Block a user