mirror of
https://github.com/Xevion/dotfiles.git
synced 2025-12-06 01:14:48 -06:00
Migrate hardcoded encrypted files to centralized secret management: - Replace encrypted domain file with Doppler variable PRIVATE_DOMAIN - Remove encrypted R2 FUSE script and s3fs password files - Update hishtory server configuration in commonrc.sh and install script - Clean up .chezmoiignore for removed encrypted files This consolidates secret management into Doppler, reducing the number of encrypted files in the repository while maintaining security.
40 lines
675 B
Plaintext
40 lines
675 B
Plaintext
hooks
|
|
tool-versions
|
|
|
|
{{/* generated files, cached files, anything that might change unnecessarily */}}
|
|
.oh-my-zsh/cache/**
|
|
.oh-my-zsh/plugins/**
|
|
.oh-my-zsh/templates/**
|
|
.oh-my-zsh/custom/themes/powerlevel10k/**/*.zwc
|
|
.asdf/downloads/**
|
|
.asdf/installs/**
|
|
.asdf/plugins/**
|
|
.asdf/shims/**
|
|
.asdf/tmp/**
|
|
.asdf/repository/**
|
|
|
|
{{ if eq .chezmoi.os "windows" }}
|
|
{{/* Ignore Linux/Unix-only files on Windows */}}
|
|
|
|
# Shell configs (Linux-only)
|
|
.oh-my-zsh
|
|
.scripts
|
|
*.zsh
|
|
.zshrc
|
|
.bashrc
|
|
.profile
|
|
.bash_aliases
|
|
key.txt
|
|
.tmux.conf
|
|
|
|
# Linux-only config directories
|
|
.config/kitty
|
|
|
|
{{ else }}
|
|
{{/* Ignore Windows-only files on Linux/macOS */}}
|
|
|
|
# Windows-only
|
|
Documents/PowerShell
|
|
|
|
{{ end }}
|