mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
Expand and clean up Arch GNOME packages, remove alacritty from Arch
- arch_desktop_gnome_packages: add full GNOME app suite (baobab, gnome-console, loupe, papers, showtime, snapshot, sushi, gvfs backends, etc.), sort alphabetically, remove duplicates already in arch_packages_base (gnome-keyring, gvfs, gvfs-mtp, gvfs-smb, simple-scan) - Remove alacritty from arch_profile_packages; move alacritty config and directory creation to Void-only (profile_desktop_i3 / desktop_void_dotfiles) - Enable emacs user service via ansible.builtin.systemd (scope: user) instead of a manual symlink Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -19,7 +19,6 @@
|
||||
loop:
|
||||
- "{{ user_home }}/.config"
|
||||
- "{{ user_home }}/.config/autostart"
|
||||
- "{{ user_home }}/.config/alacritty"
|
||||
- "{{ user_home }}/.config/systemd"
|
||||
- "{{ user_home }}/.config/systemd/user"
|
||||
- "{{ user_home }}/.bashrc.d"
|
||||
|
||||
@@ -17,15 +17,13 @@
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
- name: Enable package-provided emacs user service
|
||||
tags: [services, dotfiles:desktop, emacs]
|
||||
ansible.builtin.file:
|
||||
src: /usr/lib/systemd/user/emacs.service
|
||||
dest: "{{ user_home }}/.config/systemd/user/default.target.wants/emacs.service"
|
||||
state: link
|
||||
owner: "{{ username }}"
|
||||
group: "{{ user_group }}"
|
||||
force: true
|
||||
- name: Enable emacs user service from package
|
||||
tags: [services, emacs]
|
||||
ansible.builtin.systemd:
|
||||
name: emacs.service
|
||||
enabled: true
|
||||
scope: user
|
||||
become_user: "{{ username }}"
|
||||
|
||||
- name: Deploy gpg-agent.conf for GNOME (pinentry-gnome3, no ssh-support)
|
||||
tags: [dotfiles, dotfiles:desktop, gnome]
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
group: "{{ user_group }}"
|
||||
mode: "0755"
|
||||
loop:
|
||||
- "{{ user_home }}/.config/alacritty"
|
||||
- "{{ user_home }}/.config/dunst"
|
||||
- "{{ user_home }}/.config/i3"
|
||||
- "{{ user_home }}/.config/i3blocks"
|
||||
|
||||
Reference in New Issue
Block a user