Merge pull request #164624 from mart-w/fix/nixos/paperless-ng-fix-164615-consumation-bug

nixos/paperless-ng: fix #164615
This commit is contained in:
Artturi 2022-03-18 13:30:08 +02:00 committed by GitHub
commit 7958394022
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,6 +214,8 @@ in
User = cfg.user;
ExecStart = "${cfg.package}/bin/paperless-ng qcluster";
Restart = "on-failure";
# The `mbind` syscall is needed for running the classifier.
SystemCallFilter = defaultServiceConfig.SystemCallFilter ++ [ "mbind" ];
};
environment = env;
wantedBy = [ "multi-user.target" ];