2017-08-12 16:57:30 +01:00
|
|
|
class config {
|
|
|
|
include 'config::vim'
|
2017-08-12 18:59:43 +01:00
|
|
|
include 'config::fonts'
|
2017-10-08 20:07:51 +01:00
|
|
|
include 'config::private'
|
2017-08-12 16:57:30 +01:00
|
|
|
|
2017-10-19 20:49:41 +01:00
|
|
|
file { 'Touchpad gestures config':
|
2017-08-12 16:57:30 +01:00
|
|
|
ensure => file,
|
2017-10-08 18:52:37 +01:00
|
|
|
mode => '0644',
|
2017-10-19 20:49:41 +01:00
|
|
|
path => '/etc/libinput-gestures.conf',
|
2017-08-12 16:57:30 +01:00
|
|
|
source => 'puppet:///modules/config/libinput-gestures.conf'
|
|
|
|
}
|
|
|
|
|
2017-10-19 20:49:41 +01:00
|
|
|
file { 'Terminator config':
|
2017-08-12 16:57:30 +01:00
|
|
|
ensure => file,
|
2017-10-08 18:52:37 +01:00
|
|
|
mode => '0644',
|
2017-10-19 20:49:41 +01:00
|
|
|
path => '/home/jake/.config/terminator/config',
|
2017-08-12 16:57:30 +01:00
|
|
|
source => 'puppet:///modules/config/terminator.conf'
|
|
|
|
}
|
|
|
|
|
2017-10-19 20:49:41 +01:00
|
|
|
file { 'Uniemoji config':
|
2017-08-12 16:57:30 +01:00
|
|
|
ensure => file,
|
2017-10-08 18:52:37 +01:00
|
|
|
mode => '0644',
|
2017-10-19 20:49:41 +01:00
|
|
|
path => '/home/jake/.config/uniemoji/custom.json',
|
2017-08-12 16:57:30 +01:00
|
|
|
source => 'puppet:///modules/config/uniemoji.json'
|
|
|
|
}
|
2017-10-08 19:55:06 +01:00
|
|
|
|
2017-10-19 20:49:41 +01:00
|
|
|
file { 'Install SSH config':
|
2017-10-08 19:55:06 +01:00
|
|
|
ensure => file,
|
|
|
|
mode => '0644',
|
|
|
|
owner => 'jake',
|
2017-10-19 20:49:41 +01:00
|
|
|
path => '/home/jake/.ssh/assh.yml',
|
2017-10-08 19:55:06 +01:00
|
|
|
source => 'puppet:///modules/config/assh.yml'
|
|
|
|
}
|
2017-10-19 20:49:41 +01:00
|
|
|
|
|
|
|
file { 'Install global gitignore':
|
|
|
|
ensure => file,
|
2017-10-19 21:42:18 +01:00
|
|
|
path => '/home/jake/.config/.gitignore',
|
2017-10-19 20:49:41 +01:00
|
|
|
mode => '0644',
|
|
|
|
source => 'puppet:///modules/config/gitignore_global'
|
|
|
|
}
|
2017-08-12 16:57:30 +01:00
|
|
|
}
|