Hyperling
791dc245a6
* Add volume key controls. * Add placeholder for LBRY app. * Refactor gui into gnome and packages. Remove deprecated lineinfiles. Enhance package management. * Variablize tar to fix FreeBSD. * Variablize tar to fix FreeBSD. * Take FreeBSD gui.yml refactor into account. * Unfinished changes to use self-signed cert so local traffic can hit https. Server starts fine, but getting "gnutls_handshake() failed: An unexpected TLS packet was received." on client's `git clone`. * Make D2D optional. FreeBSD is still having a hard time compiling it. * Use a block for Dash To Dock so only one ignore_errors is necessary. * Deprecate miner section since machines have been decommissioned. * Remove deprecated file. * Switch to lightdm on FreeBSD. * Automate GPU driver installation. * Updated DWM config and added TODO's. * Move lynis to src folder for cleanliness. * Remove debug. * Refactor for "shared" system type folder. * Fix FreeBSD gpu.yml location. * Add a default hosts file to hide warnings.
75 lines
1.4 KiB
YAML
75 lines
1.4 KiB
YAML
---
|
|
# Packages for FreeBSD workstation.
|
|
|
|
# General #
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | General | Install
|
|
package:
|
|
name:
|
|
- "{{ firefox_esr }}"
|
|
- "{{ evolution }}"
|
|
- telegram-desktop
|
|
- libreoffice
|
|
state: present
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | General | Uninstall Bloat
|
|
package:
|
|
name:
|
|
- "{{ firefox }}"
|
|
- "{{ thunderbird }}"
|
|
state: absent
|
|
|
|
# Coding #
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | Coding | Install
|
|
package:
|
|
name:
|
|
- vscode
|
|
state: present
|
|
when: coding == true
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | Coding | Install
|
|
package:
|
|
name:
|
|
- vscode
|
|
state: absent
|
|
when: not coding == true
|
|
|
|
# Media Editors #
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | Editing | Install
|
|
package:
|
|
name:
|
|
- gimp
|
|
- shotcut
|
|
- obs-studio
|
|
state: present
|
|
when: editing == true
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | Editing | Install
|
|
package:
|
|
name:
|
|
- gimp
|
|
- shotcut
|
|
- obs-studio
|
|
state: absent
|
|
when: not editing == true
|
|
|
|
# Gaming #
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | Gaming | Install
|
|
package:
|
|
name:
|
|
- 0ad
|
|
- supertuxkart
|
|
state: present
|
|
when: gaming == true
|
|
|
|
- name: Workstation | FreeBSD | Software | Packages | Gaming | Install
|
|
package:
|
|
name:
|
|
- 0ad
|
|
- supertuxkart
|
|
state: absent
|
|
when: not gaming == true
|