2023-01-14 16:18:49 -08:00

53 lines
2.2 KiB
YAML

- name: Install system arch packages
pacman:
name:
- linux
- linux-zen
- linux-headers
- linux-zen-headers
- git # Fast Version Control System
- git-lfs # Git extension for versioning large files
- syncthing # Continuous File Synchronization
- flatpak # Application deployment framework for desktop apps
- wireguard-tools # Tool for wireguard
- cronie # Runs specified programs at scheduled times
- pipewire # Server and user space API to deal with multimedia pipelines
- pipewire-pulse
- wireplumber
- cifs-utils # CIFS filesystem user-space tools
- ansible # Simple deployment, configuration management and execution framework
- chezmoi # Manage your dotfiles across multiple machines, securely
- rsync # Remote fast incremental file transfer tool
- unzip # List, test and extract compressed files in a ZIP archive
- busybox # Swiss Army Knife of Embedded Linux
- qemu # Open Source Processor Emulator
- libvirt # Virtualization API for controlling virtualization engines
- virt-manager # User interface for managing virtual machines
- bridge-utils # Layer2 ethernet bridging for Linux
- trash-cli # Command line interface to the freedesktop.org trashcan
- udiskie # Removable disk automounter using udisks
- curl # Client that groks URLs
- wget # GNU wget download utility
- networkmanager # Network Management daemon
- network-manager-applet # NetworkManager panel applet for GNOME
- psensor # Graphical hardware temperature monitor for Linux
- upower # Abstraction for enumerating power devices
- android-udev # Android udev rules list aimed to be the most comprehensive on the net
state: present
become: true
- name: Install system aur packages
yay:
name:
- mimeo # Open files by MIME-type or file name using regular expressions
- btrbk # Backup tool for btrfs subvolumes
state: present
become: true
- name: Add the flathub flatpak repository remote
flatpak_remote:
name: flathub
state: present
flatpakrepo_url: https://flathub.org/repo/flathub.flatpakrepo
become: true