diff options
author | Yves Fischer <yvesf+git@xapek.org> | 2021-02-18 23:24:40 +0100 |
---|---|---|
committer | Yves Fischer <yvesf+git@xapek.org> | 2021-02-18 23:24:40 +0100 |
commit | 3fea46a388d0b4db27ae214259ba085528e03afa (patch) | |
tree | d5b47a1a7cf1ec128049786220ed149f9ddf60ab | |
parent | 11d29e09ce7f8bada434090a69bac5dc7a6a9683 (diff) | |
download | smtp-forward-3fea46a388d0b4db27ae214259ba085528e03afa.tar.gz smtp-forward-3fea46a388d0b4db27ae214259ba085528e03afa.zip |
config
-rw-r--r-- | module.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ in { cert = lib.mkOption { type = lib.types.path; default = null; - description = "-c /path/to/file" sets the TLS certificate file"; + description = "-c /path/to/file sets the TLS certificate file"; }; }; config = lib.mkIf config.services.smtp-forward.enable { @@ -66,7 +66,7 @@ in { PrivateMounts = true; SystemCallArchitectures = "native"; ProtectClock = true; - SystemCallFilter= [ "~@mount" "~@reboot" "~@swap" "~@module" "~@debug" "~@cpu-emulation" "SystemCallFilter=~@obsolete" ]; + SystemCallFilter= [ "~@mount" "~@reboot" "~@swap" "~@module" "~@debug" "~@cpu-emulation" "~@obsolete" ]; }; }; |