Skip to content

tunables

Variables must be used

Problematic rule

# WRONG
owner @{HOME}/.config/foo/{,**} rw,

Correct rule

owner @{user_config_dirs}/foo/{,**} rw,

Rationale

Using variables instead of hardcoding paths allows for better maintainability and compatibility across different systems and user configurations. It also makes the profile more adaptable to changes in directory structures or user environments.

See Variables for more information on available variables.

Exceptions

None