-
[I] ~ ❯❯❯ chezmoi diff --recursive .config/transmission/
Δ .config/transmission/settings.json (mode 100644 ⟶ 100664)
─────────────────────────────────────────────────────────────
[I] ~ ❯❯❯ How can I resolve this by altering source state? Target state will always go back to 644. |
Beta Was this translation helpful? Give feedback.
Answered by
twpayne
Jul 18, 2025
Replies: 1 comment 2 replies
-
This is likely due to your umask setting. If you don't want files to be group readable, set your umask to 022. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to write valid TOML in your config file. Octal numbers need the
0o
prefix, i.e. you need to writeumask = 0o022
. However, I would recommend reading up on umask on UNIX systems to understand the effect of the change you are making.