Replaced install-arch with something Ansible!
This commit is contained in:
parent
a883596cf0
commit
1a8502002a
21 changed files with 524 additions and 4 deletions
7
config/automatrop/roles/system/files/chrony.conf
Normal file
7
config/automatrop/roles/system/files/chrony.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
server 0.europe.pool.ntp.org offline
|
||||
server 1.europe.pool.ntp.org offline
|
||||
server 2.europe.pool.ntp.org offline
|
||||
server 3.europe.pool.ntp.org offline
|
||||
driftfile /etc/chrony.drift
|
||||
rtconutc
|
||||
rtcsync
|
5
config/automatrop/roles/system/files/dhcpcd.exit-hook
Normal file
5
config/automatrop/roles/system/files/dhcpcd.exit-hook
Normal file
|
@ -0,0 +1,5 @@
|
|||
if $if_up; then
|
||||
chronyc online
|
||||
elif $if_down; then
|
||||
chronyc offline
|
||||
fi
|
2
config/automatrop/roles/system/files/getty.service
Normal file
2
config/automatrop/roles/system/files/getty.service
Normal file
|
@ -0,0 +1,2 @@
|
|||
[Service]
|
||||
ExecStartPre=/bin/sh -c 'setleds +num < /dev/%I'
|
|
@ -0,0 +1,3 @@
|
|||
[Service]
|
||||
ExecStart=
|
||||
ExecStart=/usr/bin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -i%I
|
|
@ -0,0 +1,5 @@
|
|||
Section "Device"
|
||||
Identifier "Intel Graphics"
|
||||
Driver "intel"
|
||||
Option "Backlight" "intel_backlight"
|
||||
EndSection
|
8
config/automatrop/roles/system/files/xorg/joystick.conf
Normal file
8
config/automatrop/roles/system/files/xorg/joystick.conf
Normal file
|
@ -0,0 +1,8 @@
|
|||
Section "InputClass"
|
||||
Identifier "joystick catchall"
|
||||
MatchIsJoystick "on"
|
||||
MatchDevicePath "/dev/input/event*"
|
||||
Driver "joystick"
|
||||
Option "StartKeysEnabled" "False" #Disable mouse
|
||||
Option "StartMouseEnabled" "False" #support
|
||||
EndSection
|
7
config/automatrop/roles/system/files/xorg/keyboard.conf
Normal file
7
config/automatrop/roles/system/files/xorg/keyboard.conf
Normal file
|
@ -0,0 +1,7 @@
|
|||
Section "InputClass"
|
||||
Identifier "system-keyboard"
|
||||
MatchIsKeyboard "on"
|
||||
Option "XkbLayout" "us_qwerty-fr"
|
||||
#Option "XkbModel" "pc105+inet"
|
||||
Option "XkbOptions" "terminate:ctrl_alt_bksp"
|
||||
EndSection
|
6
config/automatrop/roles/system/files/xorg/touchpad.conf
Normal file
6
config/automatrop/roles/system/files/xorg/touchpad.conf
Normal file
|
@ -0,0 +1,6 @@
|
|||
Section "InputClass"
|
||||
Identifier "touchpad"
|
||||
Driver "libinput"
|
||||
MatchIsTouchpad "on"
|
||||
Option "Tapping" "on"
|
||||
EndSection
|
Loading…
Add table
Add a link
Reference in a new issue