-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.yml
More file actions
58 lines (55 loc) · 1.02 KB
/
setup.yml
File metadata and controls
58 lines (55 loc) · 1.02 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
- connection: local
hosts: localhost
vars:
user: alex
tasks:
# dotfiles and static files
###########################
- name: copy home directory
copy:
src: home/
dest: ~/
- name: chmod home/bin scripts
file:
path: "{{ item }}"
mode: 0755
with_fileglob:
- ~/bin/*.*
# apt packages
###########################
- name: install apt packages
become: yes
apt:
update_cache: yes
state: latest
name:
# programs
- ack-grep
- audacity
- curl
- ffmpeg
- file-roller
- gcc
- gimp
- git
- gnome-disk-utility
- handbrake
- htop
- libreoffice
- pavucontrol
- silversearcher-ag
- software-properties-gtk
- sound-juicer
- tmux
- transmission
- vlc
- wget
- xournal
# make fish default shell
###########################
- name: make fish default shell
become: yes
user:
name: "{{ user }}"
shell: /usr/bin/fish