2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
cfg = config.systemd.user;
|
|
|
|
|
2017-12-02 19:15:13 +01:00
|
|
|
dag = config.lib.dag;
|
|
|
|
|
2017-06-29 01:06:08 +02:00
|
|
|
enabled = cfg.services != {}
|
|
|
|
|| cfg.sockets != {}
|
|
|
|
|| cfg.targets != {}
|
|
|
|
|| cfg.timers != {};
|
2017-05-15 23:53:49 +02:00
|
|
|
|
2017-09-21 13:18:33 +02:00
|
|
|
toSystemdIni = generators.toINI {
|
2017-01-07 19:16:26 +01:00
|
|
|
mkKeyValue = key: value:
|
|
|
|
let
|
|
|
|
value' =
|
|
|
|
if isBool value then (if value then "true" else "false")
|
|
|
|
else toString value;
|
|
|
|
in
|
|
|
|
"${key}=${value'}";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildService = style: name: serviceCfg:
|
|
|
|
let
|
2017-12-02 22:52:35 +01:00
|
|
|
filename = "${name}.${style}";
|
|
|
|
|
|
|
|
# Needed because systemd derives unit names from the ultimate
|
|
|
|
# link target.
|
|
|
|
source = pkgs.writeTextDir filename (toSystemdIni serviceCfg)
|
|
|
|
+ "/" + filename;
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
wantedBy = target:
|
|
|
|
{
|
2017-12-02 22:52:35 +01:00
|
|
|
name = "systemd/user/${target}.wants/${filename}";
|
2017-11-12 00:49:36 +01:00
|
|
|
value = { inherit source; };
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
singleton {
|
2017-12-02 22:52:35 +01:00
|
|
|
name = "systemd/user/${filename}";
|
2017-11-12 00:49:36 +01:00
|
|
|
value = { inherit source; };
|
2017-01-07 19:16:26 +01:00
|
|
|
}
|
|
|
|
++
|
|
|
|
map wantedBy (serviceCfg.Install.WantedBy or []);
|
|
|
|
|
|
|
|
buildServices = style: serviceCfgs:
|
|
|
|
concatLists (mapAttrsToList (buildService style) serviceCfgs);
|
|
|
|
|
2017-12-04 11:17:46 +01:00
|
|
|
servicesStartTimeoutMs = builtins.toString cfg.servicesStartTimeoutMs;
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2017-09-26 23:40:31 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
options = {
|
|
|
|
systemd.user = {
|
2017-10-20 14:02:05 +02:00
|
|
|
systemctlPath = mkOption {
|
|
|
|
default = "${pkgs.systemd}/bin/systemctl";
|
|
|
|
defaultText = "\${pkgs.systemd}/bin/systemctl";
|
|
|
|
type = types.str;
|
|
|
|
description = ''
|
|
|
|
Absolute path to the <command>systemctl</command> tool. This
|
|
|
|
option may need to be set if running Home Manager on a
|
|
|
|
non-NixOS distribution.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
services = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
|
|
|
description = "Definition of systemd per-user service units.";
|
|
|
|
};
|
|
|
|
|
2017-06-29 01:06:08 +02:00
|
|
|
sockets = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
|
|
|
description = "Definition of systemd per-user sockets";
|
|
|
|
};
|
|
|
|
|
2017-01-09 22:48:53 +01:00
|
|
|
targets = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
|
|
|
description = "Definition of systemd per-user targets";
|
|
|
|
};
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
timers = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
|
|
|
description = "Definition of systemd per-user timers";
|
|
|
|
};
|
2017-12-04 11:17:46 +01:00
|
|
|
|
|
|
|
startServices = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Start all services that are wanted by active targets.
|
|
|
|
Additionally, stop obsolete services from the previous
|
|
|
|
generation.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
servicesStartTimeoutMs = mkOption {
|
|
|
|
default = 0;
|
|
|
|
type = types.int;
|
|
|
|
description = ''
|
|
|
|
How long to wait for started services to fail until their
|
|
|
|
start is considered successful.
|
|
|
|
'';
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
config = mkMerge [
|
|
|
|
{
|
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion = enabled -> pkgs.stdenv.isLinux;
|
|
|
|
message =
|
|
|
|
let
|
|
|
|
names = concatStringsSep ", " (
|
2017-06-29 01:06:08 +02:00
|
|
|
attrNames (
|
|
|
|
cfg.services // cfg.sockets // cfg.targets // cfg.timers
|
|
|
|
)
|
2017-05-15 23:53:49 +02:00
|
|
|
);
|
|
|
|
in
|
|
|
|
"Must use Linux for modules that require systemd: " + names;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
# If we run under a Linux system we assume that systemd is
|
|
|
|
# available, in particular we assume that systemctl is in PATH.
|
|
|
|
(mkIf pkgs.stdenv.isLinux {
|
2017-10-24 18:30:35 +02:00
|
|
|
xdg.configFile =
|
2017-05-15 23:53:49 +02:00
|
|
|
listToAttrs (
|
|
|
|
(buildServices "service" cfg.services)
|
|
|
|
++
|
2017-06-29 01:06:08 +02:00
|
|
|
(buildServices "socket" cfg.sockets)
|
|
|
|
++
|
2017-05-15 23:53:49 +02:00
|
|
|
(buildServices "target" cfg.targets)
|
|
|
|
++
|
|
|
|
(buildServices "timer" cfg.timers)
|
|
|
|
);
|
|
|
|
|
2017-12-02 19:15:13 +01:00
|
|
|
home.activation.reloadSystemD = dag.entryAfter ["linkGeneration"] (
|
2017-12-04 11:17:46 +01:00
|
|
|
if cfg.startServices then
|
|
|
|
''
|
|
|
|
PATH=${dirOf cfg.systemctlPath} \
|
|
|
|
${pkgs.ruby}/bin/ruby ${./systemd-activate.rb} \
|
|
|
|
"''${oldGenPath=}" "$newGenPath" "${servicesStartTimeoutMs}"
|
|
|
|
''
|
|
|
|
else import ./systemd-activate.nix cfg.systemctlPath
|
|
|
|
);
|
2017-05-15 23:53:49 +02:00
|
|
|
})
|
|
|
|
];
|
2017-01-07 19:16:26 +01:00
|
|
|
}
|