Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.beanstalkd;
|
|
pkg = pkgs.beanstalkd;
|
|
in
|
|
|
|
{
|
|
# interface
|
|
|
|
options = {
|
|
services.beanstalkd = {
|
|
enable = lib.mkEnableOption "the Beanstalk work queue";
|
|
|
|
listen = {
|
|
port = lib.mkOption {
|
|
type = lib.types.port;
|
|
description = "TCP port that will be used to accept client connections.";
|
|
default = 11300;
|
|
};
|
|
|
|
address = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "IP address to listen on.";
|
|
default = "127.0.0.1";
|
|
example = "0.0.0.0";
|
|
};
|
|
};
|
|
|
|
openFirewall = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = "Whether to open ports in the firewall for the server.";
|
|
};
|
|
};
|
|
};
|
|
|
|
# implementation
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
networking.firewall = lib.mkIf cfg.openFirewall {
|
|
allowedTCPPorts = [ cfg.listen.port ];
|
|
};
|
|
|
|
environment.systemPackages = [ pkg ];
|
|
|
|
systemd.services.beanstalkd = {
|
|
description = "Beanstalk Work Queue";
|
|
after = [ "network.target" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
Restart = "always";
|
|
ExecStart = "${pkg}/bin/beanstalkd -l ${cfg.listen.address} -p ${toString cfg.listen.port} -b $STATE_DIRECTORY";
|
|
StateDirectory = "beanstalkd";
|
|
};
|
|
};
|
|
|
|
};
|
|
}
|