2021-11-20 18:34:13 +01:00
|
|
|
|
{ lib, systemdUtils }:
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2021-11-20 18:34:13 +01:00
|
|
|
|
with systemdUtils.lib;
|
2014-04-14 16:26:48 +02:00
|
|
|
|
with lib;
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2013-10-30 15:33:20 +01:00
|
|
|
|
let
|
2014-11-20 10:41:05 +01:00
|
|
|
|
checkService = checkUnitConfig "Service" [
|
|
|
|
|
(assertValueOneOf "Type" [
|
2019-07-15 14:28:26 +02:00
|
|
|
|
"exec" "simple" "forking" "oneshot" "dbus" "notify" "idle"
|
2014-11-20 10:41:05 +01:00
|
|
|
|
])
|
|
|
|
|
(assertValueOneOf "Restart" [
|
2015-01-19 11:41:18 +01:00
|
|
|
|
"no" "on-success" "on-failure" "on-abnormal" "on-abort" "always"
|
2014-11-20 10:41:05 +01:00
|
|
|
|
])
|
|
|
|
|
];
|
|
|
|
|
|
2015-04-19 21:05:12 +02:00
|
|
|
|
in rec {
|
2013-10-30 15:33:20 +01:00
|
|
|
|
|
2013-11-18 15:45:24 +01:00
|
|
|
|
unitOption = mkOptionType {
|
|
|
|
|
name = "systemd option";
|
2016-03-01 20:47:08 +01:00
|
|
|
|
merge = loc: defs:
|
2013-11-18 15:51:21 +01:00
|
|
|
|
let
|
|
|
|
|
defs' = filterOverrides defs;
|
2013-11-18 15:45:24 +01:00
|
|
|
|
in
|
2022-02-08 12:50:06 +01:00
|
|
|
|
if isList (head defs').value
|
|
|
|
|
then concatMap (def:
|
|
|
|
|
if builtins.typeOf def.value == "list"
|
|
|
|
|
then def.value
|
|
|
|
|
else
|
|
|
|
|
throw "The definitions for systemd unit options should be either all lists, representing repeatable options, or all non-lists, but for the option ${showOption loc}, the definitions are a mix of list and non-list ${lib.options.showDefs defs'}"
|
|
|
|
|
) defs'
|
|
|
|
|
|
2019-11-08 16:45:44 +01:00
|
|
|
|
else mergeEqualOption loc defs';
|
2013-11-18 15:45:24 +01:00
|
|
|
|
};
|
|
|
|
|
|
2014-04-17 23:35:05 +02:00
|
|
|
|
sharedOptions = {
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2012-10-29 21:01:36 +01:00
|
|
|
|
enable = mkOption {
|
|
|
|
|
default = true;
|
2013-10-28 15:12:11 +01:00
|
|
|
|
type = types.bool;
|
2012-10-29 21:01:36 +01:00
|
|
|
|
description = ''
|
|
|
|
|
If set to false, this unit will be a symlink to
|
|
|
|
|
/dev/null. This is primarily useful to prevent specific
|
2017-09-16 12:48:16 +02:00
|
|
|
|
template instances
|
|
|
|
|
(e.g. <literal>serial-getty@ttyS0</literal>) from being
|
|
|
|
|
started. Note that <literal>enable=true</literal> does not
|
|
|
|
|
make a unit start by default at boot; if you want that, see
|
|
|
|
|
<literal>wantedBy</literal>.
|
2012-10-29 21:01:36 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2014-04-17 23:35:05 +02:00
|
|
|
|
requiredBy = mkOption {
|
|
|
|
|
default = [];
|
2021-12-27 13:00:00 +01:00
|
|
|
|
type = types.listOf unitNameType;
|
2017-09-16 12:48:16 +02:00
|
|
|
|
description = ''
|
|
|
|
|
Units that require (i.e. depend on and need to go down with)
|
|
|
|
|
this unit. The discussion under <literal>wantedBy</literal>
|
|
|
|
|
applies here as well: inverse <literal>.requires</literal>
|
|
|
|
|
symlinks are established.
|
|
|
|
|
'';
|
2014-04-17 23:35:05 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
wantedBy = mkOption {
|
|
|
|
|
default = [];
|
2021-12-27 13:00:00 +01:00
|
|
|
|
type = types.listOf unitNameType;
|
2017-09-16 12:48:16 +02:00
|
|
|
|
description = ''
|
|
|
|
|
Units that want (i.e. depend on) this unit. The standard way
|
|
|
|
|
to make a unit start by default at boot is to set this option
|
|
|
|
|
to <literal>[ "multi-user.target" ]</literal>. That's despite
|
|
|
|
|
the fact that the systemd.unit(5) manpage says this option
|
|
|
|
|
goes in the <literal>[Install]</literal> section that controls
|
|
|
|
|
the behaviour of <literal>systemctl enable</literal>. Since
|
|
|
|
|
such a process is stateful and thus contrary to the design of
|
|
|
|
|
NixOS, setting this option instead causes the equivalent
|
|
|
|
|
inverse <literal>.wants</literal> symlink to be present,
|
|
|
|
|
establishing the same desired relationship in a stateless way.
|
|
|
|
|
'';
|
2014-04-17 23:35:05 +02:00
|
|
|
|
};
|
|
|
|
|
|
2017-02-01 22:51:16 +01:00
|
|
|
|
aliases = mkOption {
|
|
|
|
|
default = [];
|
2021-12-27 13:00:00 +01:00
|
|
|
|
type = types.listOf unitNameType;
|
2017-02-01 22:51:16 +01:00
|
|
|
|
description = "Aliases of that unit.";
|
|
|
|
|
};
|
|
|
|
|
|
2014-04-17 23:35:05 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
concreteUnitOptions = sharedOptions // {
|
|
|
|
|
|
|
|
|
|
text = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
|
|
|
|
description = "Text of this systemd unit.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
unit = mkOption {
|
|
|
|
|
internal = true;
|
|
|
|
|
description = "The generated unit.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
commonUnitOptions = {
|
|
|
|
|
options = sharedOptions // {
|
2014-04-17 23:35:05 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
description = mkOption {
|
|
|
|
|
default = "";
|
|
|
|
|
type = types.singleLineStr;
|
|
|
|
|
description = "Description of this unit used in systemd messages and progress indicators.";
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
documentation = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
description = "A list of URIs referencing documentation for this unit or its configuration.";
|
|
|
|
|
};
|
2016-04-27 04:56:40 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
requires = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
Start the specified units when this unit is started, and stop
|
|
|
|
|
this unit when the specified units are stopped or fail.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
wants = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
Start the specified units when this unit is started.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
after = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
If the specified units are started at the same time as
|
|
|
|
|
this unit, delay this unit until they have started.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
before = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
If the specified units are started at the same time as
|
|
|
|
|
this unit, delay them until this unit has started.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
bindsTo = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
Like ‘requires’, but in addition, if the specified units
|
|
|
|
|
unexpectedly disappear, this unit will be stopped as well.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-10-10 22:50:41 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
partOf = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
If the specified units are stopped or restarted, then this
|
|
|
|
|
unit is stopped or restarted as well.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-15 21:36:54 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
conflicts = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
If the specified units are started, then this unit is stopped
|
|
|
|
|
and vice versa.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2013-09-22 21:04:54 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
requisite = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
Similar to requires. However if the units listed are not started,
|
|
|
|
|
they will not be started and the transaction will fail.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2014-11-19 22:11:30 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
unitConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { RequiresMountsFor = "/data"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Unit]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.unit</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-10-02 00:58:11 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
onFailure = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitNameType;
|
|
|
|
|
description = ''
|
|
|
|
|
A list of one or more units that are activated when
|
|
|
|
|
this unit enters the "failed" state.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2015-11-16 15:07:10 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
startLimitBurst = mkOption {
|
|
|
|
|
type = types.int;
|
|
|
|
|
description = ''
|
|
|
|
|
Configure unit start rate limiting. Units which are started
|
|
|
|
|
more than startLimitBurst times within an interval time
|
|
|
|
|
interval are not permitted to start any more.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2020-09-09 09:31:27 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
startLimitIntervalSec = mkOption {
|
|
|
|
|
type = types.int;
|
|
|
|
|
description = ''
|
|
|
|
|
Configure unit start rate limiting. Units which are started
|
|
|
|
|
more than startLimitBurst times within an interval time
|
|
|
|
|
interval are not permitted to start any more.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2018-11-20 18:34:43 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2CommonUnitOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
commonUnitOptions
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
restartTriggers = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf types.unspecified;
|
|
|
|
|
description = ''
|
|
|
|
|
An arbitrary list of items such as derivations. If any item
|
|
|
|
|
in the list changes between reconfigurations, the service will
|
|
|
|
|
be restarted.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
reloadTriggers = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
An arbitrary list of items such as derivations. If any item
|
|
|
|
|
in the list changes between reconfigurations, the service will
|
|
|
|
|
be reloaded. If anything but a reload trigger changes in the
|
|
|
|
|
unit file, the unit will be restarted instead.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
2012-10-02 00:58:11 +02:00
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
stage1CommonUnitOptions = commonUnitOptions;
|
2012-10-02 00:58:11 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
serviceOptions = { name, config, ... }: {
|
|
|
|
|
options = {
|
2012-10-02 00:58:11 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
environment = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
type = with types; attrsOf (nullOr (oneOf [ str path package ]));
|
|
|
|
|
example = { PATH = "/foo/bar/bin"; LANG = "nl_NL.UTF-8"; };
|
|
|
|
|
description = "Environment variables passed to the service's processes.";
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
path = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = with types; listOf (oneOf [ package str ]);
|
|
|
|
|
description = ''
|
|
|
|
|
Packages added to the service's <envar>PATH</envar>
|
|
|
|
|
environment variable. Both the <filename>bin</filename>
|
|
|
|
|
and <filename>sbin</filename> subdirectories of each
|
|
|
|
|
package are added.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
serviceConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example =
|
|
|
|
|
{ RestartSec = 5;
|
|
|
|
|
};
|
|
|
|
|
type = types.addCheck (types.attrsOf unitOption) checkService;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Service]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.service</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-08-06 17:45:59 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
script = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = "Shell commands executed as the service's main process.";
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
scriptArgs = mkOption {
|
|
|
|
|
type = types.str;
|
|
|
|
|
default = "";
|
|
|
|
|
description = "Arguments passed to the main process script.";
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
preStart = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed before the service's main process
|
|
|
|
|
is started.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
postStart = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed after the service's main process
|
|
|
|
|
is started.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
reload = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed when the service's main process
|
|
|
|
|
is reloaded.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
preStop = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed to stop the service.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
postStop = mkOption {
|
|
|
|
|
type = types.lines;
|
|
|
|
|
default = "";
|
|
|
|
|
description = ''
|
|
|
|
|
Shell commands executed after the service's main process
|
|
|
|
|
has exited.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
jobScripts = mkOption {
|
|
|
|
|
type = with types; coercedTo path singleton (listOf path);
|
|
|
|
|
internal = true;
|
|
|
|
|
description = "A list of all job script derivations of this unit.";
|
|
|
|
|
default = [];
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
2022-04-04 11:04:45 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
config = mkMerge [
|
|
|
|
|
(mkIf (config.preStart != "") rec {
|
|
|
|
|
jobScripts = makeJobScript "${name}-pre-start" config.preStart;
|
|
|
|
|
serviceConfig.ExecStartPre = [ jobScripts ];
|
|
|
|
|
})
|
|
|
|
|
(mkIf (config.script != "") rec {
|
|
|
|
|
jobScripts = makeJobScript "${name}-start" config.script;
|
|
|
|
|
serviceConfig.ExecStart = jobScripts + " " + config.scriptArgs;
|
|
|
|
|
})
|
|
|
|
|
(mkIf (config.postStart != "") rec {
|
|
|
|
|
jobScripts = (makeJobScript "${name}-post-start" config.postStart);
|
|
|
|
|
serviceConfig.ExecStartPost = [ jobScripts ];
|
|
|
|
|
})
|
|
|
|
|
(mkIf (config.reload != "") rec {
|
|
|
|
|
jobScripts = makeJobScript "${name}-reload" config.reload;
|
|
|
|
|
serviceConfig.ExecReload = jobScripts;
|
|
|
|
|
})
|
|
|
|
|
(mkIf (config.preStop != "") rec {
|
|
|
|
|
jobScripts = makeJobScript "${name}-pre-stop" config.preStop;
|
|
|
|
|
serviceConfig.ExecStop = jobScripts;
|
|
|
|
|
})
|
|
|
|
|
(mkIf (config.postStop != "") rec {
|
|
|
|
|
jobScripts = makeJobScript "${name}-post-stop" config.postStop;
|
|
|
|
|
serviceConfig.ExecStopPost = jobScripts;
|
|
|
|
|
})
|
|
|
|
|
];
|
2022-04-04 11:04:45 +02:00
|
|
|
|
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 11:04:45 +02:00
|
|
|
|
stage2ServiceOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
serviceOptions
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
options = {
|
2022-04-01 10:44:08 +02:00
|
|
|
|
restartIfChanged = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description = ''
|
|
|
|
|
Whether the service should be restarted during a NixOS
|
|
|
|
|
configuration switch if its definition has changed.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
reloadIfChanged = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = false;
|
|
|
|
|
description = ''
|
|
|
|
|
Whether the service should be reloaded during a NixOS
|
|
|
|
|
configuration switch if its definition has changed. If
|
|
|
|
|
enabled, the value of <option>restartIfChanged</option> is
|
|
|
|
|
ignored.
|
|
|
|
|
|
|
|
|
|
This option should not be used anymore in favor of
|
|
|
|
|
<option>reloadTriggers</option> which allows more granular
|
|
|
|
|
control of when a service is reloaded and when a service
|
|
|
|
|
is restarted.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
stopIfChanged = mkOption {
|
|
|
|
|
type = types.bool;
|
|
|
|
|
default = true;
|
|
|
|
|
description = ''
|
|
|
|
|
If set, a changed unit is restarted by calling
|
|
|
|
|
<command>systemctl stop</command> in the old configuration,
|
|
|
|
|
then <command>systemctl start</command> in the new one.
|
|
|
|
|
Otherwise, it is restarted in a single step using
|
|
|
|
|
<command>systemctl restart</command> in the new configuration.
|
|
|
|
|
The latter is less correct because it runs the
|
|
|
|
|
<literal>ExecStop</literal> commands from the new
|
|
|
|
|
configuration.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
startAt = mkOption {
|
|
|
|
|
type = with types; either str (listOf str);
|
|
|
|
|
default = [];
|
|
|
|
|
example = "Sun 14:00:00";
|
|
|
|
|
description = ''
|
|
|
|
|
Automatically start this unit at the given date/time, which
|
|
|
|
|
must be in the format described in
|
|
|
|
|
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
|
|
|
|
<manvolnum>7</manvolnum></citerefentry>. This is equivalent
|
|
|
|
|
to adding a corresponding timer unit with
|
|
|
|
|
<option>OnCalendar</option> set to the value given here.
|
|
|
|
|
'';
|
|
|
|
|
apply = v: if isList v then v else [ v ];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2013-10-09 14:28:35 +02:00
|
|
|
|
|
2022-04-01 10:44:08 +02:00
|
|
|
|
stage1ServiceOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
serviceOptions
|
|
|
|
|
];
|
2012-08-06 17:45:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
2012-10-09 21:14:15 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
socketOptions = {
|
|
|
|
|
options = {
|
2012-10-09 21:14:15 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
listenStreams = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
example = [ "0.0.0.0:993" "/run/my-socket" ];
|
|
|
|
|
description = ''
|
|
|
|
|
For each item in this list, a <literal>ListenStream</literal>
|
|
|
|
|
option in the <literal>[Socket]</literal> section will be created.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2013-05-14 16:07:55 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
listenDatagrams = mkOption {
|
|
|
|
|
default = [];
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
example = [ "0.0.0.0:993" "/run/my-socket" ];
|
|
|
|
|
description = ''
|
|
|
|
|
For each item in this list, a <literal>ListenDatagram</literal>
|
|
|
|
|
option in the <literal>[Socket]</literal> section will be created.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2020-08-11 23:46:39 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
socketConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { ListenStream = "/run/my-socket"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Socket]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.socket</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-10-09 21:14:15 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2SocketOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
socketOptions
|
|
|
|
|
];
|
2012-10-09 21:14:15 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-04-01 10:44:08 +02:00
|
|
|
|
stage1SocketOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
socketOptions
|
|
|
|
|
];
|
|
|
|
|
};
|
2013-03-02 01:03:13 +01:00
|
|
|
|
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
timerOptions = {
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
|
|
timerConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { OnCalendar = "Sun 14:00:00"; Unit = "foo.service"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Timer]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.timer</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> and
|
|
|
|
|
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
|
|
|
|
<manvolnum>7</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2013-03-02 01:03:13 +01:00
|
|
|
|
|
|
|
|
|
};
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2TimerOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
timerOptions
|
|
|
|
|
];
|
2013-03-02 01:03:13 +01:00
|
|
|
|
};
|
|
|
|
|
|
2022-04-01 10:44:08 +02:00
|
|
|
|
stage1TimerOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
timerOptions
|
|
|
|
|
];
|
|
|
|
|
};
|
2013-03-02 01:03:13 +01:00
|
|
|
|
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
pathOptions = {
|
|
|
|
|
options = {
|
2014-03-31 12:23:27 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
pathConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { PathChanged = "/some/path"; Unit = "changedpath.service"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Path]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.path</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2014-03-31 12:23:27 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2PathOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
pathOptions
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
stage1PathOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
pathOptions
|
|
|
|
|
];
|
2014-03-31 12:23:27 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
mountOptions = {
|
|
|
|
|
options = {
|
2012-12-28 13:29:53 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
what = mkOption {
|
|
|
|
|
example = "/dev/sda1";
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = "Absolute path of device node, file or other resource. (Mandatory)";
|
|
|
|
|
};
|
2012-12-28 13:29:53 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
where = mkOption {
|
|
|
|
|
example = "/mnt";
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = ''
|
|
|
|
|
Absolute path of a directory of the mount point.
|
|
|
|
|
Will be created if it doesn't exist. (Mandatory)
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-12-28 13:29:53 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
type = mkOption {
|
|
|
|
|
default = "";
|
|
|
|
|
example = "ext4";
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = "File system type.";
|
|
|
|
|
};
|
2012-12-28 13:29:53 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
options = mkOption {
|
|
|
|
|
default = "";
|
|
|
|
|
example = "noatime";
|
|
|
|
|
type = types.commas;
|
|
|
|
|
description = "Options used to mount the file system.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
mountConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { DirectoryMode = "0775"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Mount]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.mount</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2012-12-28 13:29:53 +01:00
|
|
|
|
|
|
|
|
|
};
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2MountOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
mountOptions
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
stage1MountOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
mountOptions
|
|
|
|
|
];
|
2012-12-28 13:29:53 +01:00
|
|
|
|
};
|
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
automountOptions = {
|
|
|
|
|
options = {
|
2013-09-23 22:56:05 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
where = mkOption {
|
|
|
|
|
example = "/mnt";
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = ''
|
|
|
|
|
Absolute path of a directory of the mount point.
|
|
|
|
|
Will be created if it doesn't exist. (Mandatory)
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
automountConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { DirectoryMode = "0775"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Automount]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.automount</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2013-09-23 22:56:05 +02:00
|
|
|
|
|
|
|
|
|
};
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2AutomountOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
automountOptions
|
|
|
|
|
];
|
2013-09-23 22:56:05 +02:00
|
|
|
|
};
|
|
|
|
|
|
2022-04-01 10:44:08 +02:00
|
|
|
|
stage1AutomountOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
automountOptions
|
|
|
|
|
];
|
|
|
|
|
};
|
2014-04-17 23:35:05 +02:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
sliceOptions = {
|
|
|
|
|
options = {
|
2016-12-20 07:21:52 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
sliceConfig = mkOption {
|
|
|
|
|
default = {};
|
|
|
|
|
example = { MemoryMax = "2G"; };
|
|
|
|
|
type = types.attrsOf unitOption;
|
|
|
|
|
description = ''
|
|
|
|
|
Each attribute in this set specifies an option in the
|
|
|
|
|
<literal>[Slice]</literal> section of the unit. See
|
|
|
|
|
<citerefentry><refentrytitle>systemd.slice</refentrytitle>
|
|
|
|
|
<manvolnum>5</manvolnum></citerefentry> for details.
|
|
|
|
|
'';
|
|
|
|
|
};
|
2016-12-20 07:21:52 +01:00
|
|
|
|
|
2022-04-04 12:48:13 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
2022-04-01 10:44:08 +02:00
|
|
|
|
|
|
|
|
|
stage2SliceOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage2CommonUnitOptions
|
|
|
|
|
sliceOptions
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
stage1SliceOptions = {
|
|
|
|
|
imports = [
|
|
|
|
|
stage1CommonUnitOptions
|
|
|
|
|
sliceOptions
|
|
|
|
|
];
|
2016-12-20 07:21:52 +01:00
|
|
|
|
};
|
|
|
|
|
|
2013-02-15 03:50:41 +01:00
|
|
|
|
}
|