summaryrefslogtreecommitdiff
path: root/inventory
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2023-01-26 19:21:33 +0100
committerChristian Pointner <equinox@spreadspace.org>2023-01-26 19:21:33 +0100
commit4d77f5945e1e267294daf322940b1fefd9711da3 (patch)
treee352aa32c8eb928c8492b12841d9098f6eddc887 /inventory
parentch-vpn: disable nordvpn for now (diff)
ch-tarvos base install
Diffstat (limited to 'inventory')
-rw-r--r--inventory/host_vars/ch-tarvos.yml63
1 files changed, 59 insertions, 4 deletions
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