dotfiles/modules/devices/manifests/work.pp
Jake Howard f946676d97
Add projects directory in common rather than work
I work on projects outside of work, you know!
2018-06-22 11:27:26 +01:00

17 lines
416 B
Puppet

class devices::work {
vcsrepo { 'Vim runtime':
ensure => latest,
provider => git,
user => 'jake',
path => '/home/jake/Projects/dotfiles',
source => 'git@github.com:dabapps/dotfiles',
}
-> file { 'DabApps dotfiles':
ensure => link,
owner => 'jake',
target => '/home/jake/Projects/dotfiles/.editorconfig',
path => '/home/jake/Projects/.editorconfig',
mode => '0644'
}
}