diff --git a/main.yml b/main.yml index 15255b2..229c966 100644 --- a/main.yml +++ b/main.yml @@ -37,6 +37,7 @@ - localtime - locale - create_user + - pacman - paru - name: nvidia when: feat_nvidia diff --git a/roles/pacman/tasks/main.yml b/roles/pacman/tasks/main.yml new file mode 100644 index 0000000..cf9872b --- /dev/null +++ b/roles/pacman/tasks/main.yml @@ -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]"