2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
toSystemdIni = (import lib/generators.nix).toINI {
|
|
|
|
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
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
systemd.user = {
|
|
|
|
services = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
|
|
|
description = "Definition of systemd per-user service units.";
|
|
|
|
};
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
home.file =
|
|
|
|
listToAttrs (
|
|
|
|
(buildServices "service" config.systemd.user.services)
|
|
|
|
++
|
2017-01-09 22:48:53 +01:00
|
|
|
(buildServices "target" config.systemd.user.targets)
|
|
|
|
++
|
2017-01-07 19:16:26 +01:00
|
|
|
(buildServices "timer" config.systemd.user.timers)
|
|
|
|
);
|
|
|
|
|
2017-01-16 20:26:42 +01:00
|
|
|
home.activation.reloadSystemD = ''
|
2017-01-07 19:16:26 +01:00
|
|
|
function systemdPostReload() {
|
|
|
|
local servicesDiffFile="$(mktemp)"
|
2017-01-08 22:06:53 +01:00
|
|
|
local oldUserServicePath="$oldGenPath/home-files/.config/systemd/user"
|
|
|
|
local newUserServicePath="$newGenPath/home-files/.config/systemd/user"
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
diff \
|
|
|
|
--new-line-format='+%L' \
|
|
|
|
--old-line-format='-%L' \
|
|
|
|
--unchanged-line-format=' %L' \
|
2017-01-09 22:49:29 +01:00
|
|
|
<(basename -a $(echo "$oldUserServicePath/"*.service) | sort) \
|
|
|
|
<(basename -a $(echo "$newUserServicePath/"*.service) | sort) \
|
2017-01-07 19:16:26 +01:00
|
|
|
> $servicesDiffFile
|
|
|
|
|
|
|
|
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 \
|
2017-01-08 22:06:53 +01:00
|
|
|
"$oldUserServicePath/$f" \
|
|
|
|
"$newUserServicePath/$f" ; then
|
2017-01-07 19:16:26 +01:00
|
|
|
echo "Adding '$f' to restart list";
|
|
|
|
toRestart+=("$f")
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
rm $servicesDiffFile
|
|
|
|
|
2017-01-08 22:06:53 +01:00
|
|
|
local sugg=""
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
if [[ -n "''${toRestart[@]}" ]] ; then
|
2017-01-09 23:38:45 +01:00
|
|
|
sugg="''${sugg}systemctl --user restart ''${toRestart[@]}\n"
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n "''${toStop[@]}" ]] ; then
|
2017-01-09 23:38:45 +01:00
|
|
|
sugg="''${sugg}systemctl --user stop ''${toStop[@]}\n"
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n "''${toStart[@]}" ]] ; then
|
2017-01-09 23:38:45 +01:00
|
|
|
sugg="''${sugg}systemctl --user start ''${toStart[@]}\n"
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n "$sugg" ]] ; then
|
|
|
|
echo "Suggested commands:"
|
2017-01-09 23:38:45 +01:00
|
|
|
echo -n -e "$sugg"
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-01-16 00:06:27 +01:00
|
|
|
$DRY_RUN_CMD systemctl --user daemon-reload
|
2017-01-08 22:06:53 +01:00
|
|
|
systemdPostReload
|
2017-01-07 19:16:26 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|