From dbdb5230f9307447ad00672a547eb1b59ba5df1c Mon Sep 17 00:00:00 2001 From: Rasmus Rosengren Date: Tue, 14 Sep 2021 12:18:54 +0200 Subject: [PATCH] add pacman conf --- main.yml | 1 + roles/pacman/tasks/main.yml | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 roles/pacman/tasks/main.yml 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]"