mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
79 lines
1.8 KiB
Nix
79 lines
1.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.services.clickhouse;
|
|
in
|
|
with lib;
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.clickhouse = {
|
|
|
|
enable = mkEnableOption "ClickHouse database server";
|
|
|
|
package = mkPackageOption pkgs "clickhouse" { };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = 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 = mkDefault "UTC";
|
|
|
|
};
|
|
|
|
}
|