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
82 lines
1.8 KiB
Nix
82 lines
1.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.clickhouse;
|
|
in
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.clickhouse = {
|
|
|
|
enable = lib.mkEnableOption "ClickHouse database server";
|
|
|
|
package = lib.mkPackageOption pkgs "clickhouse" { };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
users.users.clickhouse = {
|
|
name = "clickhouse";
|
|
uid = config.ids.uids.clickhouse;
|
|
group = "clickhouse";
|
|
description = "ClickHouse server user";
|
|
};
|
|
|
|
users.groups.clickhouse.gid = config.ids.gids.clickhouse;
|
|
|
|
systemd.services.clickhouse = {
|
|
description = "ClickHouse server";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "network.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "notify";
|
|
User = "clickhouse";
|
|
Group = "clickhouse";
|
|
ConfigurationDirectory = "clickhouse-server";
|
|
AmbientCapabilities = "CAP_SYS_NICE";
|
|
StateDirectory = "clickhouse";
|
|
LogsDirectory = "clickhouse";
|
|
ExecStart = "${cfg.package}/bin/clickhouse-server --config-file=/etc/clickhouse-server/config.xml";
|
|
TimeoutStartSec = "infinity";
|
|
};
|
|
|
|
environment = {
|
|
# Switching off watchdog is very important for sd_notify to work correctly.
|
|
CLICKHOUSE_WATCHDOG_ENABLE = "0";
|
|
};
|
|
};
|
|
|
|
environment.etc = {
|
|
"clickhouse-server/config.xml" = {
|
|
source = "${cfg.package}/etc/clickhouse-server/config.xml";
|
|
};
|
|
|
|
"clickhouse-server/users.xml" = {
|
|
source = "${cfg.package}/etc/clickhouse-server/users.xml";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
# startup requires a `/etc/localtime` which only if exists if `time.timeZone != null`
|
|
time.timeZone = lib.mkDefault "UTC";
|
|
|
|
};
|
|
|
|
}
|