-
Notifications
You must be signed in to change notification settings - Fork 3
/
notebook.yml
88 lines (81 loc) · 2.23 KB
/
notebook.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
---
#
# Webserver for running Ruby on Rails with postgresql & node.
#
# Run
# ansible-playbook webserver.yml -b -v
# -b become sudo
# -v verbose
- hosts: dev-notebook
user: dev
become: yes
connection: ssh # or paramiko
vars:
gather_facts: true # https://github.com/zzet/ansible-rbenv-role/issues/37
repo: testing
gituser: drej2k
exwm:
monitor_1: "HDMI2"
monitor_2: "eDP1"
monitor_orientation: "--left-of"
output_mode: "--auto"
emacs:
user_config_github: 'https://github.com/map7/emacs-config.git'
oh_my_zsh:
theme: robbyrussell
plugins: git
update_days: 13
case_sensitive: true
hyphen_insensitive: true
disable_update_prompt: true
disable_auto_update: true
disable_ls_colors: true
disable_auto_title: true
disable_untracked_files_dirty: true
disable_correction: true
completion_waiting_dots: false
locale:
locale: "en_AU.UTF-8"
language: "en_AU:en"
numeric: "en_AU.UTF-8"
time: "en_AU.UTF-8"
monetary: "en_AU.UTF-8"
paper: "en_AU.UTF-8"
identification: "en_AU.UTF-8"
name: "en_AU.UTF-8"
address: "en_AU.UTF-8"
telephone: "en_AU.UTF-8"
measurement: "en_AU.UTF-8"
rbenv:
env: user
version: v1.1.0
default_ruby: 2.3.3
rubies:
- version: 2.2.5
- version: 2.3.3
env:
RUBY_CONFIGURE_OPTS: "--enable-shared"
default_gems_file: common/files/default-gems
roles:
- role: zzet.rbenv
rbenv_users:
- "{{ ansible_user }}"
vars_files:
- "vars/defaults.yml"
- "vars/{{ ansible_distribution }}-{{ ansible_architecture }}.yml"
- "vars/{{ ansible_distribution }}.yml"
pre_tasks:
- include: common/tasks/add_repositories.yml
become: yes
- include: common/tasks/compression-tools.yml
tasks:
- include: common/tasks/system.yml
become: yes
- include: common/tasks/programming.yml
- include: common/tasks/backup.yml
- include: common/tasks/office.yml
- include: common/tasks/sweethome3d.yml
- include: common/tasks/homebank.yml
# - include: common/tasks/kvm.yml
handlers:
- include: common/handlers/handlers.yml