aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office.pp
blob: 9773977ad6f483a06396e6527b682e5830cf4ff1 (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
class nodo::utils::office {
  # Office
  package { [ 'vim-gtk',             'gobby',      'libreoffice'
              'sc',                  'antiword',
              'pandoc',              'wyrd',
              'gnucash',             'worklog',    'pdftk',
              'fbreader',            'gobby',
              'mat',                 'evince',
              'aewan',               'autocutsel',
              'parcellite' ]:
    ensure => installed,
  }

  # Finance
  package { [ 'ledger', 'clipf', 'misery' ]:
    ensure  => present,
  }

  # LaTeX
  package { [ 'texlive-latex-base',  'texlive-latex-recommended', 'texlive-latex-extra', 'texlive-fonts-extra', 'vim-latexsuite', 'pdfjam' ]:
    ensure => present,
  }

  # Not in use
  package { [ 'kalarm', 'gnumeric', 'jekyll', 'taskwarrior', 'hledger', 'dia', 'calibre' ]:
    ensure  => absent,
  }
}