aboutsummaryrefslogtreecommitdiff
path: root/manifests/desktop.pp
blob: 50524d6bb4af2015fcdc1215f56a6e074238fec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class nodo::desktop inherits nodo::personal {
  include utils::desktop

  class { 'fstab':
    type => 'desktop',
  }

  class { 'crypttab':
    type => 'desktop',
  }
}

class nodo::desktop::webdev inherits nodo::desktop {
  include websites::dev
  include database
  include utils::web
}