add pacman conf

master
Rasmus Rosengren 3 years ago
parent f0f2fbde90
commit dbdb5230f9
Signed by: rsrp
GPG Key ID: A13BC7BC4F81CF5F
  1. 1
      main.yml
  2. 16
      roles/pacman/tasks/main.yml

@ -37,6 +37,7 @@
- localtime
- locale
- create_user
- pacman
- paru
- name: nvidia
when: feat_nvidia

@ -0,0 +1,16 @@
---
- name: Enable pacman colors.
lineinfile:
path: /etc/pacman.conf
state: present
regexp: ^# Color
line: Color
insertafter: "[options]"
- name: Enable eye candy.
lineinfile:
path: /etc/pacman.conf
state: present
regexp: ^# ILoveCandy
line: ILoveCandy
insertafter: "[options]"
Loading…
Cancel
Save