diff options
author | binary <me@rgoncalves.se> | 2021-02-27 10:30:33 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-02-27 10:30:33 +0100 |
commit | 5acdc00aaf6c65c1353cc02a59f33e0d6ba9a281 (patch) | |
tree | 8bb7737b3efd6055dbf098105858c43c7453fbd6 /roles/_workstation/packages/vars | |
parent | d776d9820aeeb2fb84a4a47ce5eacf3a40823591 (diff) | |
download | infrastructure-5acdc00aaf6c65c1353cc02a59f33e0d6ba9a281.tar.gz |
Break workstation role in sub-roles
Diffstat (limited to 'roles/_workstation/packages/vars')
-rw-r--r-- | roles/_workstation/packages/vars/main.yml | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/roles/_workstation/packages/vars/main.yml b/roles/_workstation/packages/vars/main.yml new file mode 100644 index 0000000..a94de67 --- /dev/null +++ b/roles/_workstation/packages/vars/main.yml @@ -0,0 +1,80 @@ + +# roles/_workstation/packages/vars/main.yml +# + +--- + +pkgs_common: + # desktop (backup over dwm) + - bemenu + - i3status + # editor + - neovim + # files + - curl + - git + - syncthing + - tar + - unzip + - wget + - zip + # lang + - ansible + - go + - rust + # multimedia + - cmus + - feh + - firefox + - mpv + - qutebrowser + - vlc + - weechat + # tools + - gnupg + - htop + - ipmitool + - tor + - zsh + +pkgs_archlinux: + # desktop + - i3-wm + # editor + - emacs + # sys + - opendoas + # python + - python-jedi + - python-neovim + - python-pip + - python-requests + # net + - wireguard-dkms + +pkgs_openbsd: + # desktop + - i3 + # devel + - automake--%1.16 + - clang-tools-extra + - cmake + - gmake + - free + # editor + - emacs--no_x11%emacs + # net + - tor-browser + - torsocks + - wireguard-tools + # multimedia + - weechat-lua + - weechat-python + # python + - py3-jedi + - py3-neovim + - py3-pip + - py3-requests + # security + - pcsc-lite + - pcsc-tools |