-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpkg.install.conf.yaml
158 lines (145 loc) · 3.16 KB
/
pkg.install.conf.yaml
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
---
# must have stuff
- aptget:
[
aptitude,
software-properties-common,
wget,
curl,
gnupg2,
autoconf,
automake,
xclip,
lsb-release,
]
# mainly neovim plugin compilation
- aptget:
[
python3-distutils,
python3-dev,
]
# docker requires
- aptget:
[
apt-transport-https,
ca-certificates,
gnupg-agent,
software-properties-common,
]
- shell:
- description: Install docker
command: .installer/install_docker.sh
quiet: false
stderr: true
stdout: true
# pyenv requires:
- aptget:
[
ccache,
make,
build-essential,
libssl-dev,
zlib1g-dev,
libbz2-dev,
libreadline-dev,
libsqlite3-dev,
llvm,
libncurses5-dev,
libncursesw5-dev,
xz-utils,
tk-dev,
libffi-dev,
liblzma-dev,
]
# terminator-themes requires
- aptget: python-requests
# linting sqls requires
- aptget: ruby-dev
- shell:
- command: command -v gem >/dev/null 2>&1 && gem install sqlint
description: Install sqlint if 'gem' available
quiet: false
stderr: true
stdout: true
# linting yaml requires
- aptget: yamllint
# browsers
- aptget: firefox
- shell:
- description: Install google-chrome-unstable
command: .installer/install_chrome.sh
quiet: false
stderr: true
stdout: true
- description: Install brave-browser-beta
command: .installer/install_brave.sh
quiet: false
stderr: true
stdout: true
# ctags
- shell:
- description: Install ctags
command: .installer/install_ctags.sh
quiet: false
stderr: true
stdout: true
# my stuff - ppa
- aptget:
git:
ppa_source: ppa:git-core/ppa
upgrade: true
neovim:
ppa_source: ppa:neovim-ppa/unstable
upgrade: true
tlp:
ppa_source: ppa:linrunner/tlp
upgrade: true
# my stuff
- aptget:
[
zsh,
subversion,
git-lfs,
git-extras,
httpie,
tree,
silversearcher-ag,
shellcheck,
aria2,
preload,
terminator,
ppa-purge,
byobu,
tlp-rdw,
indicator-cpufreq,
snapd,
htop,
jq,
screenfetch,
lnav,
libimage-exiftool-perl,
]
# snap binaries
- shell:
- description: Install snap packages
command: |
snap install heroku --classic --no-wait && \
snap install slack --classic --no-wait && \
snap install intellij-idea-community --edge --classic --no-wait && \
snap install pycharm-community --edge --classic --no-wait
quiet: false
# cleanup
- shell:
- description: Remove unused non-lating fonts
command: |
xargs -a "${PWD}/remove.fonts.txt" aptitude remove -yq \
&& aptitude autoclean \
&& dpkg-reconfigure fontconfig
- description: Remove packages that are useless
command: |
xargs -a "${PWD}/remove.pkgs.txt" aptitude remove -yq \
&& aptitude autoclean
# start some services at the end
- shell:
- description: Start TLP service
command: command -v tlp >/dev/null 2>&1 && tlp start || echo 'Meh...'