Set locale and papersize in Arch
This commit is contained in:
parent
d45e76daf6
commit
29d1c8ace3
2 changed files with 14 additions and 0 deletions
13
roles/arch/tasks/locale.yml
Normal file
13
roles/arch/tasks/locale.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
- name: Set system locale
|
||||
become: true
|
||||
lineinfile:
|
||||
path: /etc/locale.conf
|
||||
line: "LANG=en_GB.UTF-8"
|
||||
create: yes
|
||||
- name: Set default paper size
|
||||
become: true
|
||||
lineinfile:
|
||||
path: /etc/papersize
|
||||
line: a4
|
||||
create: yes
|
|
@ -5,3 +5,4 @@
|
|||
- include: modules.yml
|
||||
- include: ssh.yml
|
||||
- include: solokeys.yml
|
||||
- include: locale.yml
|
||||
|
|
Loading…
Reference in a new issue