2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2017-09-21 13:19:29 +02:00
|
|
|
with import ./lib/dag.nix { inherit lib; };
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
cfg = config.systemd.user;
|
|
|
|
|
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
|
|
|
|
source = pkgs.writeText "${name}.${style}" (toSystemdIni serviceCfg);
|
|
|
|
|
|
|
|
wantedBy = target:
|
|
|
|
{
|
|
|
|
name = ".config/systemd/user/${target}.wants/${name}.${style}";
|
|
|
|
value = { inherit source; };
|
|
|
|
};
|
|
|
|
in
|
|
|
|
singleton {
|
|
|
|
name = ".config/systemd/user/${name}.${style}";
|
|
|
|
value = { inherit source; };
|
|
|
|
}
|
|
|
|
++
|
|
|
|
map wantedBy (serviceCfg.Install.WantedBy or []);
|
|
|
|
|
|
|
|
buildServices = style: serviceCfgs:
|
|
|
|
concatLists (mapAttrsToList (buildService style) serviceCfgs);
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2017-09-26 23:40:31 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
options = {
|
|
|
|
systemd.user = {
|
|
|
|
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-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 {
|
|
|
|
home.file =
|
|
|
|
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)
|
|
|
|
);
|
|
|
|
|
|
|
|
home.activation.reloadSystemD = dagEntryAfter ["linkGeneration"] ''
|
|
|
|
function systemdPostReload() {
|
|
|
|
local workDir
|
|
|
|
workDir="$(mktemp -d)"
|
|
|
|
|
|
|
|
if [[ -v oldGenPath ]] ; then
|
|
|
|
local oldUserServicePath="$oldGenPath/home-files/.config/systemd/user"
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
local newUserServicePath="$newGenPath/home-files/.config/systemd/user"
|
|
|
|
local oldServiceFiles="$workDir/old-files"
|
|
|
|
local newServiceFiles="$workDir/new-files"
|
|
|
|
local servicesDiffFile="$workDir/diff-files"
|
|
|
|
|
|
|
|
if [[ ! (-v oldUserServicePath && -d "$oldUserServicePath") \
|
|
|
|
&& ! -d "$newUserServicePath" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! (-v oldUserServicePath && -d "$oldUserServicePath") ]]; then
|
|
|
|
touch "$oldServiceFiles"
|
|
|
|
else
|
|
|
|
find "$oldUserServicePath" \
|
|
|
|
-maxdepth 1 -name '*.service' -exec basename '{}' ';' \
|
|
|
|
| sort \
|
|
|
|
> "$oldServiceFiles"
|
|
|
|
fi
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
if [[ ! -d "$newUserServicePath" ]]; then
|
|
|
|
touch "$newServiceFiles"
|
|
|
|
else
|
|
|
|
find "$newUserServicePath" \
|
|
|
|
-maxdepth 1 -name '*.service' -exec basename '{}' ';' \
|
|
|
|
| sort \
|
|
|
|
> "$newServiceFiles"
|
|
|
|
fi
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
diff \
|
|
|
|
--new-line-format='+%L' \
|
|
|
|
--old-line-format='-%L' \
|
|
|
|
--unchanged-line-format=' %L' \
|
|
|
|
"$oldServiceFiles" "$newServiceFiles" \
|
2017-08-23 17:43:46 +02:00
|
|
|
> $servicesDiffFile || true
|
2017-05-15 23:53:49 +02:00
|
|
|
|
|
|
|
local -a maybeRestart=( $(grep '^ ' $servicesDiffFile | cut -c2-) )
|
|
|
|
local -a toStop=( $(grep '^-' $servicesDiffFile | cut -c2-) )
|
|
|
|
local -a toStart=( $(grep '^+' $servicesDiffFile | cut -c2-) )
|
|
|
|
local -a toRestart=( )
|
|
|
|
|
|
|
|
for f in ''${maybeRestart[@]} ; do
|
|
|
|
if systemctl --quiet --user is-active "$f" \
|
|
|
|
&& ! cmp --quiet \
|
|
|
|
"$oldUserServicePath/$f" \
|
|
|
|
"$newUserServicePath/$f" ; then
|
|
|
|
toRestart+=("$f")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
rm -r $workDir
|
|
|
|
|
|
|
|
local sugg=""
|
|
|
|
|
|
|
|
if [[ -n "''${toRestart[@]}" ]] ; then
|
|
|
|
sugg="''${sugg}systemctl --user restart ''${toRestart[@]}\n"
|
|
|
|
fi
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
if [[ -n "''${toStop[@]}" ]] ; then
|
|
|
|
sugg="''${sugg}systemctl --user stop ''${toStop[@]}\n"
|
|
|
|
fi
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
if [[ -n "''${toStart[@]}" ]] ; then
|
|
|
|
sugg="''${sugg}systemctl --user start ''${toStart[@]}\n"
|
|
|
|
fi
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
if [[ -n "$sugg" ]] ; then
|
|
|
|
echo "Suggested commands:"
|
|
|
|
echo -n -e "$sugg"
|
|
|
|
fi
|
|
|
|
}
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-15 23:53:49 +02:00
|
|
|
$DRY_RUN_CMD systemctl --user daemon-reload
|
|
|
|
systemdPostReload
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
];
|
2017-01-07 19:16:26 +01:00
|
|
|
}
|