blob: c3006f4215da74d7cc7996bb42ed6673600c399a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
- name: First-boot setup
hosts: raspberry
gather_facts: false
tasks:
- name: Install packages
become: true
tags:
- slow
apt:
update_cache: yes
pkg:
- neovim
- tmux
- zsh
- git
- stow
- acl
- name: Clone dotfiles
tags:
- slow
shell: "git clone https://github.com/eug-vs/dotfiles.git ~/.dotfiles"
- name: Change shell to zsh
become: true
shell: "chsh eug-vs -s $(which zsh)"
- name: Install basic stow packages
shell: "cd ~/.dotfiles && stow zsh raspberry"
|