2024-11-11 08:56:15 +00:00
|
|
|
{ config, lib, ... }:
|
2016-12-04 09:44:58 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.nix-daemon;
|
2024-11-11 08:56:15 +00:00
|
|
|
|
|
|
|
inherit (lib) mkDefault mkIf mkMerge mkOption types;
|
2016-12-04 09:44:58 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2017-10-08 11:15:13 +00:00
|
|
|
services.nix-daemon.enable = mkOption {
|
|
|
|
type = types.bool;
|
2024-11-11 08:56:15 +00:00
|
|
|
default = true;
|
2024-04-14 21:02:32 +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;
|
2024-04-14 21:02:32 +00:00
|
|
|
description = "Whether to make the nix-daemon service socket activated.";
|
2018-06-21 13:20:49 +00:00
|
|
|
};
|
|
|
|
|
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";
|
2024-04-14 21:02:32 +00:00
|
|
|
description = ''
|
2017-11-28 21:25:51 +00:00
|
|
|
The logfile to use for the nix-daemon service. Alternatively
|
2023-06-22 11:21:32 +00:00
|
|
|
{command}`sudo launchctl debug system/org.nixos.nix-daemon --stderr`
|
2017-11-28 21:25:51 +00:00
|
|
|
can be used to stream the logs to a shell after restarting the service with
|
2023-06-22 11:21:32 +00:00
|
|
|
{command}`sudo launchctl kickstart -k system/org.nixos.nix-daemon`.
|
2017-11-28 21:25:51 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-10-08 11:15:13 +00:00
|
|
|
services.nix-daemon.tempDir = mkOption {
|
|
|
|
type = types.nullOr types.path;
|
|
|
|
default = null;
|
2024-04-14 21:02:32 +00:00
|
|
|
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 = {
|
2024-08-31 08:27:10 +00:00
|
|
|
command = lib.getExe' config.nix.package "nix-daemon";
|
2022-08-14 20:38:11 +00:00
|
|
|
serviceConfig.ProcessType = config.nix.daemonProcessType;
|
|
|
|
serviceConfig.LowPriorityIO = config.nix.daemonIOLowPriority;
|
2020-04-14 21:53:31 +00:00
|
|
|
serviceConfig.Label = "org.nixos.nix-daemon"; # must match daemon installed by Nix regardless of the launchd label Prefix
|
2024-04-24 05:55:01 +00:00
|
|
|
serviceConfig.SoftResourceLimits.NumberOfFiles = mkDefault 1048576;
|
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
|
2023-11-10 10:21:18 +00:00
|
|
|
{
|
|
|
|
NIX_SSL_CERT_FILE = mkIf
|
|
|
|
(config.environment.variables ? 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
|
|
|
};
|
|
|
|
}
|