summaryrefslogtreecommitdiff
path: root/manifests/workstation
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--manifests/workstation.pp37
-rw-r--r--manifests/workstation/family/archlinux.pp8
-rw-r--r--manifests/workstation_x.pp25
3 files changed, 70 insertions, 0 deletions
diff --git a/manifests/workstation.pp b/manifests/workstation.pp
index a60973f..7a92e2b 100644
--- a/manifests/workstation.pp
+++ b/manifests/workstation.pp
@@ -44,7 +44,44 @@ class profiles::workstation (
}}),
}
+ # Packages I almost certainly want
+ ensure_packages([
+ 'bash-completion',
+ 'cloc',
+ 'ctags',
+ 'ed',
+ 'git',
+ 'htop',
+ 'moreutils',
+ 'vi',
+ 'wget',
+ 'curl',
+ ])
+
+ # Packages I want for most system
+ ensure_packages([
+ 'direnv',
+ 'elinks',
+ 'ghc-libs',
+ 'highlight',
+ 'imagemagick',
+ 'isync',
+ 'mpc',
+ 'mutt',
+ 'ncmpc',
+ 'nmap',
+ 'pass',
+ 'pass-otp',
+ 'python-pip', # version depending on system?
+ 'ranger',
+ 'sshuttle',
+ 'valgrind',
+ 'weechat',
+ ])
+
+
include ::profiles::cowsay
+ include ::profiles::tex
include ::profiles::sudo
include ::profiles::mounts
}
diff --git a/manifests/workstation/family/archlinux.pp b/manifests/workstation/family/archlinux.pp
index 306b903..eb4765a 100644
--- a/manifests/workstation/family/archlinux.pp
+++ b/manifests/workstation/family/archlinux.pp
@@ -24,6 +24,14 @@ class profiles::workstation::family::archlinux {
line => "MAKEFLAGS='-j${cpus}'"
}
+ ensure_packgaes ([
+ 'inetutils',
+ 'man-pages',
+ 'man-pages-sv',
+ 'net-tools',
+ 'pkgfile',
+ ])
+
# remove
# - netctl
diff --git a/manifests/workstation_x.pp b/manifests/workstation_x.pp
index b065d96..692710b 100644
--- a/manifests/workstation_x.pp
+++ b/manifests/workstation_x.pp
@@ -64,4 +64,29 @@ class profiles::workstation_x (
mode => '0555',
source => 'puppet:///modules/profiles/passmenu',
}
+
+ ensure_packages([
+ 'alacritty',
+ 'emacs',
+ 'firefox',
+ 'gvim', # Arch specific name?
+ 'otf-fira-mono',
+ 'passmenu',
+ 'scrot',
+ 'transmission-remote-gtk',
+ 'ttf-fira-mono',
+ 'xclip',
+ 'xorg',
+ 'xorg-xinit',
+ 'xorg-fonts-misc',
+ 'xrandr',
+ 'arandr',
+ 'xterm',
+ 'zathura',
+ 'zathura-pdf-mupdf',
+ 'zathura-ps',
+ ])
+
+ include ::profiles::pulseaudio
+ include ::profiles::xmonad
}