2018-07-20 22:56:59 +02:00
|
|
|
{ config, lib, ... }:
|
2009-11-15 13:48:42 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-11-15 13:48:42 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.powerManagement;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-15 13:48:42 +01:00
|
|
|
powerManagement = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.bool;
|
2012-10-05 04:10:35 +02:00
|
|
|
default = true;
|
2009-11-15 13:48:42 +01:00
|
|
|
description = ''
|
|
|
|
Whether to enable power management. This includes support
|
|
|
|
for suspend-to-RAM and powersave features on laptops.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
resumeCommands = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.lines;
|
2009-11-15 13:48:42 +01:00
|
|
|
default = "";
|
|
|
|
description = "Commands executed after the system resumes from suspend-to-RAM.";
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-15 13:56:40 +01:00
|
|
|
powerUpCommands = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.lines;
|
2009-11-15 13:56:40 +01:00
|
|
|
default = "";
|
2021-10-03 18:06:03 +02:00
|
|
|
example = literalExpression ''
|
2014-08-27 23:41:15 +02:00
|
|
|
"''${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda"
|
|
|
|
'';
|
2009-11-15 13:56:40 +01:00
|
|
|
description = ''
|
|
|
|
Commands executed when the machine powers up. That is,
|
|
|
|
they're executed both when the system first boots and when
|
|
|
|
it resumes from suspend or hibernation.
|
|
|
|
'';
|
|
|
|
};
|
2010-12-02 21:23:45 +01:00
|
|
|
|
|
|
|
powerDownCommands = mkOption {
|
2013-10-30 17:37:45 +01:00
|
|
|
type = types.lines;
|
2010-12-02 21:23:45 +01:00
|
|
|
default = "";
|
2021-10-03 18:06:03 +02:00
|
|
|
example = literalExpression ''
|
2014-08-27 23:41:15 +02:00
|
|
|
"''${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda"
|
|
|
|
'';
|
2010-12-02 21:23:45 +01:00
|
|
|
description = ''
|
|
|
|
Commands executed when the machine powers down. That is,
|
|
|
|
they're executed both when the system shuts down and when
|
|
|
|
it goes to suspend or hibernation.
|
|
|
|
'';
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-15 13:48:42 +01:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-15 13:48:42 +01:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-11-15 13:48:42 +01:00
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2013-08-24 17:47:06 +02:00
|
|
|
systemd.targets.post-resume = {
|
2013-08-27 08:03:49 +02:00
|
|
|
description = "Post-Resume Actions";
|
2013-08-24 17:47:06 +02:00
|
|
|
requires = [ "post-resume.service" ];
|
|
|
|
after = [ "post-resume.service" ];
|
|
|
|
wantedBy = [ "sleep.target" ];
|
|
|
|
unitConfig.StopWhenUnneeded = true;
|
|
|
|
};
|
|
|
|
|
2012-10-04 23:57:10 +02:00
|
|
|
# Service executed before suspending/hibernating.
|
2019-08-13 23:52:01 +02:00
|
|
|
systemd.services.pre-sleep =
|
2012-10-04 23:57:10 +02:00
|
|
|
{ description = "Pre-Sleep Actions";
|
|
|
|
wantedBy = [ "sleep.target" ];
|
|
|
|
before = [ "sleep.target" ];
|
|
|
|
script =
|
|
|
|
''
|
|
|
|
${cfg.powerDownCommands}
|
|
|
|
'';
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
systemd.services.post-resume =
|
2013-08-24 17:47:06 +02:00
|
|
|
{ description = "Post-Resume Actions";
|
2022-07-22 18:33:37 +02:00
|
|
|
after = [ "suspend.target" "hibernate.target" "hybrid-sleep.target" "suspend-then-hibernate.target" ];
|
2012-10-04 23:57:10 +02:00
|
|
|
script =
|
|
|
|
''
|
2022-11-03 13:00:00 +01:00
|
|
|
/run/current-system/systemd/bin/systemctl try-restart --no-block post-resume.target
|
2012-10-04 23:57:10 +02:00
|
|
|
${cfg.resumeCommands}
|
|
|
|
${cfg.powerUpCommands}
|
|
|
|
'';
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
};
|
|
|
|
|
2009-11-15 13:48:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|