Update ansible configuration to match current system state

- Updated ethernet interface name to enp0s20u1u1u2
- Changed default shell to fish
- Removed uninstalled packages (zsh, htop, rclone, helm, llama-swap)
- Network config still differs (systemd-networkd/iwd vs nmcli)
This commit is contained in:
OpenCode Test
2026-01-01 13:24:29 -08:00
parent 27560832a2
commit 16440138b1
5 changed files with 126 additions and 11 deletions

View File

@@ -31,7 +31,7 @@
ansible.builtin.user:
name: "{{ common_user_name }}"
password: "{{ common_user_password }}"
shell: /bin/bash
shell: "{{ common_user_shell | default('/bin/bash') }}"
state: present
create_home: yes
tags: [ 'common', 'users' ]