nixpkgs/nixos/modules/system/boot/shutdown.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
705 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
with lib;
{
# This unit saves the value of the system clock to the hardware
# clock on shutdown.
systemd.services.save-hwclock = {
description = "Save Hardware Clock";
wantedBy = [ "shutdown.target" ];
unitConfig = {
DefaultDependencies = false;
ConditionPathExists = "/dev/rtc";
ConditionPathIsReadWrite = "/etc/";
};
serviceConfig = {
Type = "oneshot";
2020-11-24 10:29:28 -05:00
ExecStart = "${pkgs.util-linux}/sbin/hwclock --systohc ${
if config.time.hardwareClockInLocalTime then "--localtime" else "--utc"
}";
};
};
boot.kernel.sysctl."kernel.poweroff_cmd" = "${config.systemd.package}/sbin/poweroff";
}