forked from bketelsen/workstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocal.yml
More file actions
executable file
·55 lines (50 loc) · 1.74 KB
/
Copy pathlocal.yml
File metadata and controls
executable file
·55 lines (50 loc) · 1.74 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
- hosts: localhost
become: true
vars_files:
- config.yml
pre_tasks:
- name: Update Repositories
apt: update_cache=yes
changed_when: false
tasks:
# Update entire system
- include: tasks/software/update-system.yml
# Ansible Settings
- include: tasks/sudo/sudoers.yml
# Software Settings
- include: tasks/software/pop-theme.yml
- include: tasks/software/repos.yml
- include: tasks/software/docker.yml
- include: tasks/software/elementary-sdk.yml
- include: tasks/software/apt.yml
- include: tasks/software/pip.yml
- include: tasks/software/snap.yml
- include: tasks/software/flatpak.yml
# This must come after the pip/yml due to dependencies
- include: tasks/software/github-releases.yml
# System Settings
- include: tasks/system/sysctl.yml
- include: tasks/system/nsswitch.yml
- include: tasks/system/services.yml
- include: tasks/system/timezone.yml
- include: tasks/system/ufw.yml
- include: tasks/system/screenshot.yml
#- include: tasks/system/dns.yml
# User Settings
- include: tasks/user/groups.yml
- include: tasks/user/users.yml
- include: tasks/user/folders.yml
- include: tasks/user/dotfiles.yml
- include: tasks/user/startup-items/startup.yml
- include: tasks/user/cron.yml
- include: tasks/user/shell.yml
- include: tasks/user/shortcuts.yml
- include: tasks/user/general-user-settings.yml
- include: tasks/user/shuffler.yml
- include: tasks/user/wallstreet.yml
# - include: tasks/user/scripts.yml
- include: tasks/user/permissions.yml
# User Visual Settings
# Running defaults for now
- include: tasks/user/visual/theme.yml
- include: tasks/user/visual/desktop-icons.yml