class nodo::desktop inherits nodo::personal { include utils::desktop # fstab if $fstab != false { class { 'fstab': type => 'desktop', } } # crypttab if $crypttab != false { class { 'crypttab': type => 'desktop', } } } class nodo::desktop::minimal { $fstab = false $crypttab = false $xorg = false $pam = false # Backups should happen when the box is likely to be online $backup_when = 'everyday at 12:00' # Desktop class include nodo::desktop } class nodo::desktop::webdev inherits nodo::desktop { include websites::dev include database include utils::web }