Skip to content

Commit

Permalink
Fix rustup command, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Encephala committed Jun 20, 2024
1 parent aaccb7a commit d0a1dc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

My ansible playbooks and roles.

Vault password managed by `vault_pass.py` through the [Bitwarden CLI](https://bitwarden.com/help/cli/).
~~Vault password managed by `vault_pass.py` through the [Bitwarden CLI](https://bitwarden.com/help/cli/).~~
Yeah nah that was too much effort, screw typing the password every time.

Only work on Debian(-based) systems.

Expand All @@ -20,12 +21,8 @@ notification through my Gotify server.

## TODO

- Fix rustup install
- Fix neovim install
- The mv command doesn't actually check move
a new version because the dest file exists
- Make provision install R languageserver
- Make provision not install all LSPs for nvim when not `is_desktop`
- Fix dotfiles to have the option to not install all the bulk that is Cargo (maybe just don't install zoxide xd)

## Installing Ansible with pipx

Expand Down
2 changes: 1 addition & 1 deletion roles/provision/tasks/dotfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

- name: Install rust with Rustup
ansible.builtin.shell:
cmd: set -o pipefail curl https://sh.rustup.rs -sSf | sh -s -- -y
cmd: set -o pipefail && curl https://sh.rustup.rs -sSf | sh -s -- -y
creates: "{{ home }}/.cargo"

- name: Install zoxide
Expand Down

0 comments on commit d0a1dc7

Please sign in to comment.