fixes for arch

This commit is contained in:
Tyler Starr 2023-07-05 09:46:43 -07:00
parent 10af914eb4
commit cc85e1f05d
6 changed files with 18 additions and 8 deletions

View File

@ -24,3 +24,11 @@
shell: |
usermod -a -G libvirt {{ user }}
become: true
- name: Start and enable dbus-broker
tags: ["once"]
systemd:
name: dbus-broker
enabled: true
state: started
become: true

View File

@ -13,9 +13,9 @@
shell: |
fc-cache -fv
- name: Install Noto Emoji Fonts
- name: Install Noto Fonts for Emojis
pacman:
name:
- fonts-noto-color-emoji
- noto-fonts-emoji
state: present
become: true

View File

@ -19,6 +19,7 @@
- fzf
- unzip
- chezmoi
- dbus-broker
state: present
become: true

View File

@ -1,7 +1,7 @@
- name: Install nnn dependencies
pacman:
name:
- libreadline-dev
- readline
state: present
become: true

View File

@ -14,6 +14,7 @@
- khard # Command-line addressbook built around CardDAV
- vdirsyncer # Synchronize calendars and addressbooks
- neofetch # Simple system information script
- python-setuptools
state: present
become: true

View File

@ -34,11 +34,11 @@ chmod +x "$CHEZDIR/temp_bin/rbw-get"
# Set bitwarden email
rbw config set email "$bitemail"
# initialize chezmoi
chezmoi init
# first chezmoi apply
chezmoi apply
## initialize chezmoi
#chezmoi init
#
## first chezmoi apply
#chezmoi apply
# reboot!
read -p "You should reboot, but I won't make you. Reboot? " -n 1 -r