-
Notifications
You must be signed in to change notification settings - Fork 3
/
default.config.yml
197 lines (175 loc) · 4.93 KB
/
default.config.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
---
# Install packages
install_packages: true
installed_packages:
- apache2-utils
- cmake
- dconf-editor # visual gnome configs
- gir1.2-clutter-1.0 # dep gnome extension system monitor
- gir1.2-clutter-gst-3.0 # dep gnome extension system monitor
- gir1.2-gtkclutter-1.0 # dep gnome extension system monitor
- git
- locales-all
- openssl
- podman # see https://github.com/NixOS/nixpkgs/issues/138423
- poedit
install_home_manager: true
nix_packages:
- name: kubectl
check_cmd: kubectl version --client
- name: helm
check_cmd: helm --version
- name: k9s
check_cmd: k9s version
- name: htop
check_cmd: htop --version
- name: nmap
check_cmd: nmap --version
- name: thefuck
check_cmd: thefuck --version
- name: tmux
check_cmd: tmux -V
- name: vagrant
check_cmd: vagrant --version
- name: vim
check_cmd: vim --version
- name: wget
check_cmd: wget --version
- name: xclip
check_cmd: xclip -version
# Install packages from other package managers
install_extra_packages: true
# Note: You are responsible for adding the required package managers
# installation, eg. through nix
snap_packages: []
# - name: postman
gem_packages: []
# - name: bundler
# state: present # present/absent/latest, default: present
# version: "~> 1.15.1" # default: N/A
npm_packages: []
# - name: webpack
# state: present # present/absent/latest, default: present
# version: "^2.6" # default: N/A
# Docker
# Default is false in favor to podman installation in installed_packages
install_docker: false
# Dotfiles (requires git on installed_packages or extra_packages)
configure_dotfiles: true
dotfiles_repo: "https://github.com/staticdev/dotfiles-eg.git"
dotfiles_repo_version: main
dotfiles_files:
- .tmux.conf
- .vimrc
- .zshrc
# Development
## Go settings
golang_developer: true
golang_version: "1.21.5"
## NodeJs settings
nodejs_developer: true
nodejs_version: "20.x"
## Python settings
python_developer: true
pyenv_python_versions:
- 3.12.1
- 3.11.7
pyenv_global:
- 3.12.1
- 3.11.7
pyenv_virtualenvs: []
# IDEs
## Pycharm
install_pycharm: false
pycharm_flavor: community # you can also choose: professional
## VSCodium (community-driven, freely-licensed binary distribution of Microsoft’s editor VSCode)
install_vscodium: true
# Browser configs
## Firefox config (note: default profile for Debian is default-esr)
configure_firefox: false
firefox_profiles:
default:
extensions:
- ublock-origin
preferences:
network.cookie.cookieBehavior: 1
privacy.donottrackheader.enabled: true
signon.rememberSignons: false
## Brave install
install_brave: true
# keyboard config
configure_keyboard: false
keyboard_layout: us
keyboard_variant: intl
keyboard_c_cedilla: false
# SSH config
configure_ssh: true
ssh_key_type: ed25519 # you can also choose between: dsa, ecdsa and ed25519
# For RSA keys, the minimum size is 1024 bits and the default is 4096 bits. Generally, 2048 bits is considered sufficient.
# DSA keys must be exactly 1024 bits as specified by FIPS 186-2.
# For ECDSA keys, size determines the key length by selecting from one of three elliptic curve sizes: 256, 384 or 521 bits.
# Attempting to use bit lengths other than these three values for ECDSA keys will cause this module to fail.
# Ed25519 keys have a fixed length and the size will be ignored.
ssh_key_size:
ssh_key_passphrase: super_secret_password
# Sudoers config
configure_sudoers: false
sudoers_custom_config: ""
# Example:
# sudoers_custom_config: |
# # Allow users in admin group to use sudo with no password.
# %admin ALL=(ALL) NOPASSWD: ALL
# Terminal config
## Guake config
configure_terminal: true
guake_keybinding: "F12"
## ZSH config
install_zsh: true
zsh_default_shell: true
# Git config
setup_git: true
git_init_default_branch: main
git_pull_rebase: false
## create workspace folders with specific configs
git_create_workspaces: true
git_workspaces:
- folder_name: workspace
email: name@mail.com
username: gitusername
# - folder_name: workspace2
# email: name2@mail.com
# username: gitusername2
## used only if git_create_workspaces is false
git_email: name@mail.com
git_username: gitusername
# Office setup
install_onlyoffice: true
## remove libreoffice in favor to onlyoffice
remove_libreoffice: false
# Gnome config
gnome_setup: false
gnome_favorite_apps:
[
"firefox.desktop",
"brave-browser.desktop",
"org.gnome.Nautilus.desktop",
"codium.desktop",
]
# enable entire screen sharing
enable_screen_sharing: false
# extra installs
## cryptomator
install_cryptomator: false
cryptomator_version: 1.11.1
install_keypass_xc: false
install_obs: false
install_rclone: false
install_signal: false
## openrgb
install_openrgb: false
# get from https://gitlab.com/CalcProgrammer1/OpenRGB/-/tags
openrgb_git_release: release_0.9
openrgb_deb_version: 0.9.0
openrgb_deb_architecture: amd64
# glob pattern to ansible task files to run after all other tasks are finished.
post_provision_tasks: []