mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
120 lines
3.1 KiB
Nix
120 lines
3.1 KiB
Nix
|
{ 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.";
|
||
|
};
|
||
|
|
||
|
timers = mkOption {
|
||
|
default = {};
|
||
|
type = types.attrs;
|
||
|
description = "Definition of systemd per-user timers";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = {
|
||
|
home.file =
|
||
|
listToAttrs (
|
||
|
(buildServices "service" config.systemd.user.services)
|
||
|
++
|
||
|
(buildServices "timer" config.systemd.user.timers)
|
||
|
);
|
||
|
|
||
|
home.activation.reloadSystemD = stringAfter ["linkages"] ''
|
||
|
function systemdPostReload() {
|
||
|
local servicesDiffFile="$(mktemp)"
|
||
|
|
||
|
diff \
|
||
|
--new-line-format='+%L' \
|
||
|
--old-line-format='-%L' \
|
||
|
--unchanged-line-format=' %L' \
|
||
|
<(basename -a $(echo "$oldGenPath/.config/systemd/user/*.service") | sort) \
|
||
|
<(basename -a $(echo "$newGenPath/.config/systemd/user/*.service") | sort) \
|
||
|
> $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 \
|
||
|
"$oldGenPath/.config/systemd/user/$f" \
|
||
|
"$newGenPath/.config/systemd/user/$f" ; then
|
||
|
echo "Adding '$f' to restart list";
|
||
|
toRestart+=("$f")
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
rm $servicesDiffFile
|
||
|
|
||
|
sugg=""
|
||
|
|
||
|
if [[ -n "''${toRestart[@]}" ]] ; then
|
||
|
sugg="$sugg\nsystemctl --user restart ''${toRestart[@]}"
|
||
|
fi
|
||
|
|
||
|
if [[ -n "''${toStop[@]}" ]] ; then
|
||
|
sugg="$sugg\nsystemctl --user stop ''${toStop[@]}"
|
||
|
fi
|
||
|
|
||
|
if [[ -n "''${toStart[@]}" ]] ; then
|
||
|
sugg="$sugg\nsystemctl --user start ''${toStart[@]}"
|
||
|
fi
|
||
|
|
||
|
if [[ -n "$sugg" ]] ; then
|
||
|
echo "Suggested commands:"
|
||
|
echo -e "$sugg"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
if [[ "$oldGenPath" != "$newGenPath" ]] ; then
|
||
|
systemctl --user daemon-reload
|
||
|
systemdPostReload
|
||
|
fi
|
||
|
'';
|
||
|
};
|
||
|
}
|