2011-07-25 02:45:52 +02:00
|
|
|
# Upower daemon.
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-07-25 02:45:52 +02:00
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-07-25 02:45:52 +02:00
|
|
|
services.upower = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-07-25 02:45:52 +02:00
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Upower, a DBus service that provides power
|
|
|
|
management support to applications.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-07-25 02:45:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-07-25 02:45:52 +02:00
|
|
|
config = mkIf config.services.upower.enable {
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.upower ];
|
|
|
|
|
|
|
|
services.dbus.packages = [ pkgs.upower ];
|
|
|
|
|
2011-08-24 23:24:39 +02:00
|
|
|
services.udev.packages = [ pkgs.upower ];
|
|
|
|
|
2012-10-04 22:38:31 +02:00
|
|
|
boot.systemd.services.upower =
|
|
|
|
{ description = "Power Management Daemon";
|
|
|
|
path = [ pkgs.glib ]; # needed for gdbus
|
|
|
|
serviceConfig =
|
|
|
|
{ Type = "dbus";
|
|
|
|
BusName = "org.freedesktop.UPower";
|
|
|
|
ExecStart = "@${pkgs.upower}/libexec/upowerd upowerd";
|
|
|
|
};
|
|
|
|
};
|
2012-08-21 17:29:59 +02:00
|
|
|
|
2011-09-06 13:18:36 +02:00
|
|
|
system.activationScripts.upower =
|
|
|
|
''
|
|
|
|
mkdir -m 0755 -p /var/lib/upower
|
|
|
|
'';
|
|
|
|
|
2011-07-25 02:45:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|