2016-12-04 10:44:58 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.nix-daemon;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2017-10-08 13:15:13 +02:00
|
|
|
services.nix-daemon.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2024-04-14 23:02:32 +02:00
|
|
|
description = "Whether to enable the nix-daemon service.";
|
2017-10-08 13:15:13 +02:00
|
|
|
};
|
2016-12-04 10:44:58 +01:00
|
|
|
|
2018-06-21 15:20:49 +02:00
|
|
|
services.nix-daemon.enableSocketListener = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2024-04-14 23:02:32 +02:00
|
|
|
description = "Whether to make the nix-daemon service socket activated.";
|
2018-06-21 15:20:49 +02:00
|
|
|
};
|
|
|
|
|
2017-11-28 22:25:51 +01:00
|
|
|
services.nix-daemon.logFile = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
|
|
|
example = "/var/log/nix-daemon.log";
|
2024-04-14 23:02:32 +02:00
|
|
|
description = ''
|
2017-11-28 22:25:51 +01:00
|
|
|
The logfile to use for the nix-daemon service. Alternatively
|
2023-06-22 12:21:32 +01:00
|
|
|
{command}`sudo launchctl debug system/org.nixos.nix-daemon --stderr`
|
2017-11-28 22:25:51 +01:00
|
|
|
can be used to stream the logs to a shell after restarting the service with
|
2023-06-22 12:21:32 +01:00
|
|
|
{command}`sudo launchctl kickstart -k system/org.nixos.nix-daemon`.
|
2017-11-28 22:25:51 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-10-08 13:15:13 +02:00
|
|
|
services.nix-daemon.tempDir = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
2024-04-14 23:02:32 +02:00
|
|
|
description = "The TMPDIR to use for nix-daemon.";
|
2016-12-04 10:44:58 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-12-14 21:15:02 +01:00
|
|
|
config = mkIf cfg.enable {
|
2016-12-04 10:44:58 +01:00
|
|
|
|
2018-01-03 20:10:24 +01:00
|
|
|
nix.useDaemon = true;
|
2016-12-15 13:26:22 +01:00
|
|
|
|
2016-12-14 21:15:02 +01:00
|
|
|
launchd.daemons.nix-daemon = {
|
2024-08-31 18:27:10 +10:00
|
|
|
command = lib.getExe' config.nix.package "nix-daemon";
|
2022-08-14 13:38:11 -07:00
|
|
|
serviceConfig.ProcessType = config.nix.daemonProcessType;
|
|
|
|
serviceConfig.LowPriorityIO = config.nix.daemonIOLowPriority;
|
2020-04-14 14:53:31 -07:00
|
|
|
serviceConfig.Label = "org.nixos.nix-daemon"; # must match daemon installed by Nix regardless of the launchd label Prefix
|
2024-04-24 15:55:01 +10:00
|
|
|
serviceConfig.SoftResourceLimits.NumberOfFiles = mkDefault 1048576;
|
2017-11-28 22:25:51 +01:00
|
|
|
serviceConfig.StandardErrorPath = cfg.logFile;
|
2016-12-04 10:44:58 +01:00
|
|
|
|
2018-06-21 15:20:49 +02:00
|
|
|
serviceConfig.KeepAlive = mkIf (!cfg.enableSocketListener) true;
|
|
|
|
|
|
|
|
serviceConfig.Sockets = mkIf cfg.enableSocketListener
|
|
|
|
{ Listeners.SockType = "stream";
|
|
|
|
Listeners.SockPathName = "/nix/var/nix/daemon-socket/socket";
|
|
|
|
};
|
|
|
|
|
2018-03-26 21:50:50 +02:00
|
|
|
serviceConfig.EnvironmentVariables = mkMerge [
|
|
|
|
config.nix.envVars
|
2023-11-10 11:21:18 +01:00
|
|
|
{
|
|
|
|
NIX_SSL_CERT_FILE = mkIf
|
|
|
|
(config.environment.variables ? NIX_SSL_CERT_FILE)
|
|
|
|
(mkDefault config.environment.variables.NIX_SSL_CERT_FILE);
|
2018-03-26 21:50:50 +02:00
|
|
|
TMPDIR = mkIf (cfg.tempDir != null) cfg.tempDir;
|
2019-02-18 23:06:50 +01:00
|
|
|
# FIXME: workaround for https://github.com/NixOS/nix/issues/2523
|
2019-02-22 00:02:10 +01:00
|
|
|
OBJC_DISABLE_INITIALIZE_FORK_SAFETY = mkDefault "YES";
|
2018-03-26 21:50:50 +02:00
|
|
|
}
|
|
|
|
];
|
2016-12-15 13:26:22 +01:00
|
|
|
};
|
2017-01-25 21:22:40 +01:00
|
|
|
|
2016-12-04 10:44:58 +01:00
|
|
|
};
|
|
|
|
}
|