MyNixOS website logo
option

services.postgresql.systemCallFilter.<name>.priority

Set the priority of the system call filter setting. Later declarations override earlier ones, e.g.

[Service]
SystemCallFilter=~read write
SystemCallFilter=write

results in a service where onlyread is not allowed.

The ordering in the unit file is controlled by this option: the higher the number, the later it will be added to the filterset.

By default, depending on the prefix a priority is assigned: usually, call-groups (starting with @) are used to allow/deny a larger set of syscalls and later on single syscalls are configured for exceptions. Hence, syscall groups and negative groups are placed before individual syscalls by default.

Declarations
Type
signed integer
Default
if hasPrefix "@" name then 500 else if hasPrefix "~@" name then 1000 else 1500
Sign in to create a configuration using this setting.