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

nixos/paperless-ng: fix #164615

authored by

Artturi and committed by
GitHub
79583940 8e43f82a

+2
+2
nixos/modules/services/misc/paperless-ng.nix
··· 214 214 User = cfg.user; 215 215 ExecStart = "${cfg.package}/bin/paperless-ng qcluster"; 216 216 Restart = "on-failure"; 217 + # The `mbind` syscall is needed for running the classifier. 218 + SystemCallFilter = defaultServiceConfig.SystemCallFilter ++ [ "mbind" ]; 217 219 }; 218 220 environment = env; 219 221 wantedBy = [ "multi-user.target" ];