dotfiles/manifests/packages.pp

129 lines
2.3 KiB
Puppet

node default {
package {[ # Packages that need to be installed first
'i3-gaps',
'ttf-google-fonts-git'
]:
ensure => installed
} ->
package {[
'acpi',
'advanced-ssh-config',
'archstrike-keyring',
'arduino',
'atom-editor-bin',
'bcm20702a1-firmware',
'bleachbit',
'blender',
'bluez-firmware',
'brave-bin',
'calibre',
'caret-bin',
'catimg',
'clamtk',
'corebird',
'compton',
'deluge',
'dex',
'dmenu',
'dunst',
'etcher',
'etcher-cli',
'feedreader',
'feh',
'filezilla',
'firefox',
'firefox-developer',
'fonts-meta-extended-lt',
'freac',
'gimp',
'glogg',
'google-earth-pro',
'gparted',
'grub-customizer',
'grub2-theme-archlinux',
'gvim',
'handbrake',
'hexchat',
'hipchat',
'htop',
'i3lock',
'i3status',
'i3status-rust',
'ibus',
'ibus-uniemoji',
'inkscape',
'intellij-idea-ultimate-edition',
'intellij-idea-ultimate-edition-jre',
'intellij-jdk',
'jdk',
'jshon',
'kdenlive',
'keybase-bin',
'kodi',
'libinput',
'libinput-gestures',
'lxpolkit-git',
'lxrandr',
'minecraft',
'nextcloud-client',
'nodejs',
'numix-gtk-theme',
'nvm',
'obs-studio',
'oh-my-zsh-git',
'onlyoffice-desktopeditors-portable',
'pacaur',
'perl-file-mimeinfo',
'pigz',
'playerctl',
'postgresql',
'postman-bin',
'psensor',
'pyenv',
'pyenv-virtualenv',
'python-pip',
'python-virtualenv',
'python2-pip',
'python2-virtualenv',
'qt5-styleplugins',
'redis',
'screenfetch',
'sl',
'slack-desktop',
'slack-term',
'spotify',
'steam',
'sublime-text',
'sysstat',
'terminator',
'thefuck',
'thunderbird',
'tig',
'tor-browser-en',
'ttf-emojione-color',
'ttf-ms-fonts',
'ttf-wps-fonts',
'turtl',
'tupload',
'twmn-git',
'variety',
'visual-studio-code',
'virtualbox',
'vivaldi',
'vlc',
'whatsie',
'wps-office',
'wps-office-extension-english-uk-dictionary',
'yaourt',
'yubikey-manager',
'yubikey-personalization-gui',
'zeal',
'zsh',
'zsh-completions',
'zsh-doc'
]:
ensure => installed
}
}