aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/touchpad.pp
blob: 07d02152f2d7bab802d2d6143fceaeb89315bb93 (plain)
1
2
3
4
5
6
7
8
9
10
class nodo::utils::touchpad (
  $ensure = 'installed',
) {
  # Touchpad
  package { [
    'gpointing-device-settings',
  ]:
    ensure => $ensure,
  }
}