mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
fix apt calls
This commit is contained in:
parent
3af095e2e4
commit
10af914eb4
@ -1,5 +1,5 @@
|
||||
- name: Install desktop packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- mpv # Video player based on MPlayer/mplayer2
|
||||
- ffmpeg # Decoding, encoding and streaming software
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install sway packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- alacritty
|
||||
- sway
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install development packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- python3 # Python programming language (3.11 series)
|
||||
- python-pip # A tool for installing and managing Python3 packages
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install engineering packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- freecad # General purpose 3D CAD modeler
|
||||
- gqrx
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install gaming packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- lutris # Video game preservation platform
|
||||
- gamemode # Optimize system performance for games on demand
|
||||
|
@ -14,7 +14,7 @@
|
||||
fc-cache -fv
|
||||
|
||||
- name: Install Noto Emoji Fonts
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- fonts-noto-color-emoji
|
||||
state: present
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install system packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- git # Fast Version Control System
|
||||
- git-lfs # Git extension for versioning large files
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install nnn dependencies
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- libreadline-dev
|
||||
state: present
|
||||
|
@ -1,5 +1,5 @@
|
||||
- name: Install terminal packages
|
||||
apt:
|
||||
pacman:
|
||||
name:
|
||||
- neovim # Vim-fork focused on extensibility and agility
|
||||
- task # Command-line TODO list manager
|
||||
|
@ -8,7 +8,8 @@ read bitemail
|
||||
|
||||
# Install ansible python dependencies
|
||||
sudo pacman -Syu
|
||||
sudo pacman python3 python3-pip ansible cargo -y
|
||||
sudo pacman -Syu python3 python-pip ansible cargo
|
||||
sudo find / -name "EXTERNALLY-MANAGED" -type f -delete
|
||||
pip install pexpect
|
||||
cargo install rbw
|
||||
|
||||
@ -20,10 +21,10 @@ export PATH="$PATH:$CHEZDIR/temp_bin"
|
||||
export PATH="$PATH:$HOME/.local/bin"
|
||||
|
||||
# Install ansible extensions
|
||||
ansible-galaxy install -r "$CHEZDIR/provision/debian/ansible/requirements.yml"
|
||||
ansible-galaxy install -r "$CHEZDIR/provision/arch/ansible/requirements.yml"
|
||||
|
||||
# Run setup playbook
|
||||
ansible-playbook "$CHEZDIR/provision/debian/ansible/setup.yml" -i "$CHEZDIR/provision/debian/ansible/hosts" --ask-become-pass
|
||||
ansible-playbook "$CHEZDIR/provision/arch/ansible/setup.yml" -i "$CHEZDIR/provision/arch/ansible/hosts" --ask-become-pass
|
||||
|
||||
# Copy jumpstart scripts to temp bin dir and add to path
|
||||
mkdir -p "$CHEZDIR/temp_bin"
|
||||
|
Loading…
x
Reference in New Issue
Block a user