python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / services / misc / beanstalkd.nix
blob5d34355aebfc70156c87ce435a6cce966f65696f
1 { config, lib, pkgs, ... }:
3 with lib;
5 let
6   cfg = config.services.beanstalkd;
7   pkg = pkgs.beanstalkd;
8 in
11   # interface
13   options = {
14     services.beanstalkd = {
15       enable = mkEnableOption (lib.mdDoc "the Beanstalk work queue");
17       listen = {
18         port = mkOption {
19           type = types.int;
20           description = lib.mdDoc "TCP port that will be used to accept client connections.";
21           default = 11300;
22         };
24         address = mkOption {
25           type = types.str;
26           description = lib.mdDoc "IP address to listen on.";
27           default = "127.0.0.1";
28           example = "0.0.0.0";
29         };
30       };
32       openFirewall = mkOption {
33         type = types.bool;
34         default = false;
35         description = lib.mdDoc "Whether to open ports in the firewall for the server.";
36       };
37     };
38   };
40   # implementation
42   config = mkIf cfg.enable {
44     networking.firewall = mkIf cfg.openFirewall {
45       allowedTCPPorts = [ cfg.listen.port ];
46     };
48     environment.systemPackages = [ pkg ];
50     systemd.services.beanstalkd = {
51       description = "Beanstalk Work Queue";
52       after = [ "network.target" ];
53       wantedBy = [ "multi-user.target" ];
54       serviceConfig = {
55         DynamicUser = true;
56         Restart = "always";
57         ExecStart = "${pkg}/bin/beanstalkd -l ${cfg.listen.address} -p ${toString cfg.listen.port} -b $STATE_DIRECTORY";
58         StateDirectory = "beanstalkd";
59       };
60     };
62   };