-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
57 lines (56 loc) · 1.16 KB
/
main.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
---
# tasks file for ubuntu-config-playbook
- name: Configure Ubuntu for Igor Zinovik
hosts: localhost
vars:
dotfiles_dir: /home/izinovik/dotfiles
make_targets:
- shell
- vim
applications:
- acpi
- blueman
- curl
- dnssec-trigger
- docker.io
- git
- jq
- keepassxc
- kubectl
- make
- net-tools
- scrot
- spectrwm
- ssh
- tmux
- unbound
- vim
- vlc
- xbindkeys
- xclip
- xterm
- xtrlock
- xxkb
- zsh
snaps:
- chromium
- restic
- skype
- telegram-desktop
- zoom-client
repos:
- "deb [arch=amd64] https://pkgs.k8s.io/core:/stable:/v1.30/deb/ /"
- "deb http://repo.yandex.ru/yandex-disk/deb/ stable main"
- "ppa:phoerious/keepassxc"
apt_keys:
- EE2C95AB58DC2B0138D16B4FEFC4571D7C90E5AF # Yandex Disk
tasks:
- include: tasks/applications.yml
tags: [ apps ]
- include: tasks/snaps.yml
tags: [ apps ]
- include: tasks/git.yml
- include: tasks/make.yml
- include: tasks/files.yml
- include: tasks/a2dp-bluetooth-pulseaudio.yml
...