Import general config files

This commit is contained in:
Jake Howard 2017-08-12 16:57:30 +01:00
parent 4f2c9fa75f
commit efc399377c
Signed by: jake
GPG Key ID: 57AFB45680EDD477
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
class config {
include 'config::vim'
file { '/etc/libinput-gestures.conf':
ensure => file,
mode => "0644",
source => 'puppet:///modules/config/libinput-gestures.conf'
}
file { '/home/jake/.config/terminator/config':
ensure => file,
mode => "0644",
source => 'puppet:///modules/config/terminator.conf'
}
file { '/home/jake/.config/uniemoji/custom.json':
ensure => file,
mode => "0644",
source => 'puppet:///modules/config/uniemoji.json'
}
}