mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
105 lines
2.4 KiB
Nix
105 lines
2.4 KiB
Nix
# Upower daemon.
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.upower;
|
|
in
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.upower = {
|
|
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable Upower, a DBus service that provides power
|
|
management support to applications.
|
|
'';
|
|
};
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.upower;
|
|
defaultText = "pkgs.upower";
|
|
example = lib.literalExample "pkgs.upower";
|
|
description = ''
|
|
Which upower package to use.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
services.dbus.packages = [ cfg.package ];
|
|
|
|
services.udev.packages = [ cfg.package ];
|
|
|
|
systemd.services.upower =
|
|
{ description = "Power Management Daemon";
|
|
path = [ pkgs.glib.out ]; # needed for gdbus
|
|
serviceConfig =
|
|
{ Type = "dbus";
|
|
BusName = "org.freedesktop.UPower";
|
|
ExecStart = "@${cfg.package}/libexec/upowerd upowerd";
|
|
Restart = "on-failure";
|
|
# Upstream lockdown:
|
|
# Filesystem lockdown
|
|
ProtectSystem = "strict";
|
|
# Needed by keyboard backlight support
|
|
ProtectKernelTunables = false;
|
|
ProtectControlGroups = true;
|
|
ReadWritePaths = "/var/lib/upower";
|
|
ProtectHome = true;
|
|
PrivateTmp = true;
|
|
|
|
# Network
|
|
# PrivateNetwork=true would block udev's netlink socket
|
|
RestrictAddressFamilies = "AF_UNIX AF_NETLINK";
|
|
|
|
# Execute Mappings
|
|
MemoryDenyWriteExecute = true;
|
|
|
|
# Modules
|
|
ProtectKernelModules = true;
|
|
|
|
# Real-time
|
|
RestrictRealtime = true;
|
|
|
|
# Privilege escalation
|
|
NoNewPrivileges = true;
|
|
};
|
|
};
|
|
|
|
system.activationScripts.upower =
|
|
''
|
|
mkdir -m 0755 -p /var/lib/upower
|
|
'';
|
|
|
|
# The upower daemon seems to get stuck after doing a suspend
|
|
# (i.e. subsequent suspend requests will say "Sleep has already
|
|
# been requested and is pending"). So as a workaround, restart
|
|
# the daemon.
|
|
powerManagement.resumeCommands =
|
|
''
|
|
${config.systemd.package}/bin/systemctl try-restart upower
|
|
'';
|
|
|
|
};
|
|
|
|
}
|