nixos/dex-oidc: set proper SystemCallFilter

Changed files
+2 -2
nixos
modules
services
web-apps
+2 -2
nixos/modules/services/web-apps/dex.nix
···
'';
description = lib.mdDoc ''
The available options can be found in
-
[the example configuration](https://github.com/dexidp/dex/blob/v${pkgs.dex.version}/config.yaml.dist).
+
[the example configuration](https://github.com/dexidp/dex/blob/v${pkgs.dex-oidc.version}/config.yaml.dist).
It's also possible to refer to environment variables (defined in [services.dex.environmentFile](#opt-services.dex.environmentFile))
using the syntax `$VARIABLE_NAME`.
···
RestrictRealtime = true;
RestrictSUIDSGID = true;
SystemCallArchitectures = "native";
-
SystemCallFilter = [ "@system-service" "~@privileged @resources @setuid @keyring" ];
+
SystemCallFilter = [ "@system-service" "~@privileged @setuid @keyring" ];
TemporaryFileSystem = "/:ro";
# Does not work well with the temporary root
#UMask = "0066";