Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/dotfiles
Path: blob/master/roles/ergodox/tasks/main.yml
245 views
1
---
2
- name: Install apt package dependencies
3
apt:
4
name: "libusb-dev"
5
state: present
6
update_cache: yes
7
cache_valid_time: 3600
8
9
- name: Add udev rules
10
copy:
11
src: "50-wally.rules"
12
dest: "/etc/udev/rules.d/"
13
owner: root
14
group: root
15
16
- name: Install wally binary
17
get_url:
18
url: "https://configure.ergodox-ez.com/wally/linux"
19
dest: "~/.local/bin/wally"
20
mode: "0755"
21
become: no
22
23