From f8847f9ac1ce3e41f1a3ca805edb0f8ad9df6f9c Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sat, 21 Jan 2023 13:56:31 -0500 Subject: [PATCH] Arch setup --- playbooks/roles/arch/tasks/main.yml | 5 +++++ playbooks/roles/rust/tasks/main.yml | 12 +++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/playbooks/roles/arch/tasks/main.yml b/playbooks/roles/arch/tasks/main.yml index 1e7bdef..d112143 100644 --- a/playbooks/roles/arch/tasks/main.yml +++ b/playbooks/roles/arch/tasks/main.yml @@ -17,6 +17,7 @@ - tmux - gnupg - rsync + - emacs-nativecomp state: latest - name: Install skim @@ -53,6 +54,8 @@ - name: Create aur_builder user when: - dev_machine == true + become: yes + become_method: sudo user: name: aur_builder group: wheel @@ -60,6 +63,8 @@ - name: aur_builder can run pacman without sudo when: - dev_machine == true + become: yes + become_method: sudo lineinfile: path: /etc/sudoers.d/11-install-aur_builder line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman' diff --git a/playbooks/roles/rust/tasks/main.yml b/playbooks/roles/rust/tasks/main.yml index 0233604..18a195e 100644 --- a/playbooks/roles/rust/tasks/main.yml +++ b/playbooks/roles/rust/tasks/main.yml @@ -54,11 +54,6 @@ when: - rust_extras == true -- name: Install rust-analyzer - shell: ~/.cargo/bin/rustup +nightly component add rust-analyzer-preview - when: - - rust_extras == true - - name: Install starship shell: ~/.cargo/bin/cargo install starship args: @@ -115,6 +110,13 @@ when: - rust_extras == true +- name: Install difftastic + shell: ~/.cargo/bin/cargo install difftastic + args: + creates: ~/.cargo/bin/difft + when: + - rust_extras == true + - name: Install dog shell: ~/.cargo/bin/cargo install --git https://github.com/ogham/dog dog args: