summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chaos-at-home/ch-tarvos.yml18
-rw-r--r--inventory/host_vars/ch-tarvos.yml63
2 files changed, 77 insertions, 4 deletions
diff --git a/chaos-at-home/ch-tarvos.yml b/chaos-at-home/ch-tarvos.yml
new file mode 100644
index 00000000..b618abc3
--- /dev/null
+++ b/chaos-at-home/ch-tarvos.yml
@@ -0,0 +1,18 @@
+---
+- name: Basic Setup
+ hosts: ch-tarvos
+ roles:
+ - role: apt-repo/base
+ - role: core/base
+ - role: core/sshd/base
+ - role: core/zsh
+ - role: core/ntp
+ - role: core/cpu-microcode
+
+- name: Payload Setup
+ hosts: ch-tarvos
+ roles:
+ - role: apt-repo/obs-studio
+ - role: apt-repo/spreadspace
+ - role: ws/base
+ - role: core/admin-users
diff --git a/inventory/host_vars/ch-tarvos.yml b/inventory/host_vars/ch-tarvos.yml
index af416c1d..1d2c6fa4 100644
--- a/inventory/host_vars/ch-tarvos.yml
+++ b/inventory/host_vars/ch-tarvos.yml
@@ -1,13 +1,40 @@
---
+debian_preseed_language: de
+debian_preseed_country: AT
+debian_preseed_locales:
+ - de_AT.UTF-8
+ - de_DE.UTF-8
+ - en_US.UTF-8
+
+debian_preseed_no_splash: no
+debian_preseed_install_tasks:
+ - xubuntu-desktop
+
+
install:
disks:
- primary: /dev/disk/by-id/nvme-Samsung_SSD_970_PRO_512GB_S5JYNC0N310327Y
+ primary: /dev/disk/by-id/ata-Samsung_SSD_850_PRO_128GB_S1SMNSAG201847J
+ system_lvm:
+ volumes:
+ - name: root
+ size: 20G
+ filesystem: ext4
+ mountpoint: /
+ - name: var+log
+ size: 768M
+ filesystem: ext4
+ mountpoint: /var/log
+ mount_options:
+ - noatime
+ - nodev
+ - noexec
+ - name: home
+ size: 50G
+ filesystem: ext4
+ mountpoint: /home
kernel_cmdline:
- "consoleblank=0"
-
-install_dhcp: yes
-
network:
nameservers: "{{ network_zones.lan.dns }}"
domain: "{{ host_domain }}"
@@ -17,3 +44,31 @@ network:
gateway: "{{ network_zones.lan.gateway }}"
interfaces:
- *_network_primary_
+
+
+apt_repo_components:
+ - main
+ - restricted
+ - universe
+ - multiverse
+
+base_modules_blacklist: "{{ base_modules_blacklist_all_but_sound }}"
+
+admin_users_host:
+ - equinox
+
+ws_base_extra_packages:
+ # needs apt-repo/obs-studio
+ - obs-studio
+
+# ws_base_lightdm_defaults:
+# autologin-user: operator
+# autologin-user-timeout: 0
+
+# ws_base_xrandr_setup_script: |
+# #!/bin/bash
+
+# xrandr --output DP-3 --mode 1366x768 --primary
+# xrandr --output HDMI-1 --mode 1920x1080 --rate 50 --right-of DP-3
+
+# exit 0