mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
9174b4ab42
when the system boots and when it resumes from suspend. svn path=/nixos/branches/upstart-0.6/; revision=18354
76 lines
1.5 KiB
Nix
76 lines
1.5 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
let
|
|
|
|
cfg = config.powerManagement;
|
|
|
|
sleepHook = pkgs.writeScript "sleep-hook.sh"
|
|
''
|
|
#! ${pkgs.stdenv.shell}
|
|
action="$1"
|
|
if [ "$action" = "resume" ]; then
|
|
${cfg.resumeCommands}
|
|
${cfg.powerUpCommands}
|
|
fi
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
powerManagement = {
|
|
|
|
enable = mkOption {
|
|
default = false;
|
|
description =
|
|
''
|
|
Whether to enable power management. This includes support
|
|
for suspend-to-RAM and powersave features on laptops.
|
|
'';
|
|
};
|
|
|
|
resumeCommands = mkOption {
|
|
default = "";
|
|
description = "Commands executed after the system resumes from suspend-to-RAM.";
|
|
};
|
|
|
|
powerUpCommands = mkOption {
|
|
default = "";
|
|
example = "${pkgs.hdparm}/sbin/hdparm -B 255 /dev/sda";
|
|
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.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
# Enable the ACPI daemon. Not sure whether this is essential.
|
|
services.acpid.enable = true;
|
|
|
|
environment.systemPackages = [ pkgs.pmutils ];
|
|
|
|
environment.etc = singleton
|
|
{ source = sleepHook;
|
|
target = "pm/sleep.d/00sleep-hook";
|
|
};
|
|
|
|
};
|
|
|
|
}
|