blob: 43feee9ce97929c64e0cad93ef89657b709c8c43 (
plain) (
blame)
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
|
---
# ws_base_home_zfs: {}
# ws_base_hide_ntfs_disks:
# - /dev/disk/by-id/ata-blub_foo-part1
# ws_base_cleanup_tmp: 1d
ws_base_superflous_packages:
- gnome-keyring
- gnome-software
- gnome-software-common
- software-properties-gtk
- software-properties-common
- "{{ python_basename }}-software-properties"
- flashplugin-installer
- network-manager
- network-manager-gnome
- network-manager-pptp
- network-manager-pptp-gnome
- ufw
ws_base_extra_packages: []
### mind that lightdm is case sensitive when it comes to booleans
### and since ansible/jinja2 is stupid it is not easy to print
### boolean values in lowercase true and false without mangeling
### string type variables (...no test named 'boolean'...)
# ws_base_lightdm_defaults:
# allow-guest: 'false'
# greeter-hide-users: 'true'
# greeter-show-manual-login: 'true'
# ws_base_xrandr_setup_script: |
# #!/bin/bash
# xrandr --output HDMI-1 --mode 1920x1080 --primary
# exit 0
|