Import general config files
This commit is contained in:
parent
4f2c9fa75f
commit
efc399377c
4 changed files with 21 additions and 0 deletions
21
modules/config/manifests/init.pp
Normal file
21
modules/config/manifests/init.pp
Normal 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'
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue