aboutsummaryrefslogtreecommitdiff
path: root/manifests/base/personal.pp
blob: 852d023f21c795b834bfc8fa0b8d0c099bb811b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Personal computer
class nodo::base::personal {
  include nodo::base::physical
  include nodo::utils::personal
  include autossh

  class { 'nodo::subsystem::lightdm': }

  # Media folders and groups
  include nodo::subsystem::media

  # Mountpoint for encrypted home folders
  file { [ '/mnt/crypt/', '/mnt/crypt/home' ]:
    ensure => directory,
  }

  # Misc user data
  # This is handled by "hydractl sync-media"
  #file { [ "/var/data/code", "/var/data/crypt", "/var/data/crypt/home", "/var/data/load" ]:
  #  ensure  => directory,
  #  mode    => '0755',
  #  require => File['/var/cache/media'],
  #}

  # Development
  #file { [ "/var/cache/vagrant", "/var/cache/virtualbox", "/var/cache/qemu" ]:
  file { [ "/var/cache/qemu" ]:
    ensure => directory,
    mode   => '0755',
  }
}