2016-12-04 09:44:58 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.nix-daemon;
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2017-10-08 11:15:13 +00:00
|
|
|
services.nix-daemon.enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2018-01-03 19:10:24 +00:00
|
|
|
description = "Whether to enable the nix-daemon service.";
|
2017-10-08 11:15:13 +00:00
|
|
|
};
|
2016-12-04 09:44:58 +00:00
|
|
|
|
2018-06-21 13:20:49 +00:00
|
|
|
services.nix-daemon.enableSocketListener = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to make the nix-daemon service socket activated.";
|
|
|
|
};
|
|
|
|
|
2017-11-28 21:25:51 +00:00
|
|
|
services.nix-daemon.logFile = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
|
|
|
example = "/var/log/nix-daemon.log";
|
|
|
|
description = ''
|
|
|
|
The logfile to use for the nix-daemon service. Alternatively
|
|
|
|
<command>sudo launchctl debug system/org.nixos.nix-daemon --stderr</command>
|
|
|
|
can be used to stream the logs to a shell after restarting the service with
|
|
|
|
<command>sudo launchctl kickstart -k system/org.nixos.nix-daemon</command>.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-10-08 11:15:13 +00:00
|
|
|
services.nix-daemon.tempDir = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
|
|
|
description = "The TMPDIR to use for nix-daemon.";
|
2016-12-04 09:44:58 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-12-14 20:15:02 +00:00
|
|
|
config = mkIf cfg.enable {
|
2016-12-04 09:44:58 +00:00
|
|
|
|
2018-01-03 19:10:24 +00:00
|
|
|
nix.useDaemon = true;
|
2016-12-15 12:26:22 +00:00
|
|
|
|
2016-12-14 20:15:02 +00:00
|
|
|
launchd.daemons.nix-daemon = {
|
2017-01-25 20:22:40 +00:00
|
|
|
command = "${config.nix.package}/bin/nix-daemon";
|
2019-02-21 23:02:10 +00:00
|
|
|
serviceConfig.ProcessType = mkDefault "Interactive";
|
2016-12-15 12:26:22 +00:00
|
|
|
serviceConfig.LowPriorityIO = config.nix.daemonIONice;
|
|
|
|
serviceConfig.Nice = config.nix.daemonNiceLevel;
|
2019-02-21 23:02:10 +00:00
|
|
|
serviceConfig.SoftResourceLimits.NumberOfFiles = mkDefault 4096;
|
2017-11-28 21:25:51 +00:00
|
|
|
serviceConfig.StandardErrorPath = cfg.logFile;
|
2016-12-04 09:44:58 +00:00
|
|
|
|
2018-06-21 13:20:49 +00: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 19:50:50 +00:00
|
|
|
serviceConfig.EnvironmentVariables = mkMerge [
|
|
|
|
config.nix.envVars
|
2019-01-16 21:47:19 +00:00
|
|
|
{ NIX_SSL_CERT_FILE = mkDefault config.environment.variables.NIX_SSL_CERT_FILE;
|
2018-03-26 19:50:50 +00:00
|
|
|
TMPDIR = mkIf (cfg.tempDir != null) cfg.tempDir;
|
2019-02-18 22:06:50 +00:00
|
|
|
# FIXME: workaround for https://github.com/NixOS/nix/issues/2523
|
2019-02-21 23:02:10 +00:00
|
|
|
OBJC_DISABLE_INITIALIZE_FORK_SAFETY = mkDefault "YES";
|
2018-03-26 19:50:50 +00:00
|
|
|
}
|
|
|
|
];
|
2016-12-15 12:26:22 +00:00
|
|
|
};
|
2017-01-25 20:22:40 +00:00
|
|
|
|
2016-12-04 09:44:58 +00:00
|
|
|
};
|
|
|
|
}
|