2017-08-12 16:57:30 +01:00
|
|
|
class config {
|
|
|
|
include 'config::vim'
|
2017-08-12 18:47:17 +01:00
|
|
|
include 'config::git'
|
2017-08-12 18:59:43 +01:00
|
|
|
include 'config::fonts'
|
2017-08-12 16:57:30 +01:00
|
|
|
|
|
|
|
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'
|
|
|
|
}
|
2017-08-12 18:43:29 +01:00
|
|
|
|
|
|
|
|
2017-08-12 16:57:30 +01:00
|
|
|
}
|