You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.4 KiB
YAML

---
# please adjust default locale settings to your liking
locale: "en_US.UTF-8"
LC_time: "sv_SE.UTF-8"
timezone: "Europe/Stockholm"
# note that xdg-user-dirs-update supports only certain name strings
# (see `man xdg-user-dirs-update` for details)
# my point is to reduce the clutter of directories in $HOME
locales_xdg_dirs:
- name: DESKTOP
path: "{{ ansible_env.HOME }}/Desktop"
- name: DOWNLOAD
path: "{{ ansible_env.HOME }}/Downloads"
# templates is a rather pointless directory, let's remap it to Downloads
- name: TEMPLATES
path: "{{ ansible_env.HOME }}/Downloads"
- name: PUBLICSHARE
path: "{{ ansible_env.HOME }}/Public"
- name: DOCUMENTS
path: "{{ ansible_env.HOME }}/Documents"
# music is a rather pointless directory, let's remap it
- name: MUSIC
path: "{{ ansible_env.HOME }}/Downloads"
# pictures is a rather pointless directory, let's remap it
- name: PICTURES
path: "{{ ansible_env.HOME }}/Downloads"
# videos is a rather pointless directory, let's remap it
- name: VIDEOS
path: "{{ ansible_env.HOME }}/Downloads"
R_directory: /opt/R
texlive_directory: /usr/local/texlive
xdg_data_dir: "{{ ansible_env.HOME }}/.local/share"
xdg_desktop_entries: "{{ xdg_data_dir }}/applications"
xdg_desktop_icons: "{{ xdg_data_dir }}/icons"
# aptitude cache, time in seconds
aptcachetime: 3600
local_user: "{{ lookup('env', 'USER') }}"