-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathubuntu-setup.yml
More file actions
91 lines (82 loc) · 1.66 KB
/
Copy pathubuntu-setup.yml
File metadata and controls
91 lines (82 loc) · 1.66 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
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
---
- hosts: local
tasks:
- name: Update package list
become: true
apt:
update_cache: yes
- name: Upgrade all packages
become: true
apt:
name: '*'
state: latest
- name: Uninstall unnecessary packages
become: true
apt:
state: absent
autoremove: yes
purge: yes
pkg:
- gnome-tour
- gnome-weather
- gnome-contacts
- gnome-maps
- totem
- evolution
- rhythmbox
- cheese
- yelp
- name: Install basic packages
become: true
apt:
state: latest
pkg:
- libreoffice
- vlc
- gimp
- nomacs
- firefox
- doublecmd-gtk
- gnome-tweaks
- neofetch
- htop
- rofi
- remmina
- name: Install dev packages
become: true
apt:
state: latest
pkg:
- vim-nox
- vim-airline
- curl
- wget
- git
- mc
- kitty
- xterm
- tmux
- g++
- golang
- dotnet-sdk-8.0
- openjdk-21-jdk
- npm
- ghostwriter
- name: Install snap packages -- with classic tag
become: true
snap:
classic: yes
name:
- code
- intellij-idea-community
- name: Install snap packages
become: true
snap:
name:
- chromium
- steam
- discord
- name: Setup gnome
include_tasks: gnome-settings-ubuntu.yml
- name: Dotfiles setup
include_tasks: dotfiles.yml