···119119 extraPackages = mkOption {
120120 type = with types; listOf package;
121121 default = with pkgs; [
122122- swaylock swayidle foot dmenu
122122+ swaylock swayidle foot dmenu wmenu
123123 ];
124124 defaultText = literalExpression ''
125125- with pkgs; [ swaylock swayidle foot dmenu ];
125125+ with pkgs; [ swaylock swayidle foot dmenu wmenu ];
126126 '';
127127 example = literalExpression ''
128128 with pkgs; [
+3
nixos/modules/services/misc/paperless.nix
···307307 Restart = "on-failure";
308308 };
309309 environment = env;
310310+ # Allow the consumer to access the private /tmp directory of the server.
311311+ # This is required to support consuming files via a local folder.
312312+ unitConfig.JoinsNamespaceOf = "paperless-task-queue.service";
310313 };
311314312315 systemd.services.paperless-web = {