mirror of
https://github.com/nix-community/home-manager
synced 2024-11-17 08:39:44 +01:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.services.poweralertd;
|
|
|
|
in {
|
|
meta.maintainers = [ maintainers.thibautmarty ];
|
|
|
|
options.services.poweralertd = {
|
|
enable = mkEnableOption "the Upower-powered power alertd";
|
|
|
|
extraArgs = mkOption {
|
|
type = with types; listOf str;
|
|
default = [ ];
|
|
example = [ "-s" "-S" ];
|
|
description = ''
|
|
Extra command line arguments to pass to poweralertd.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.poweralertd" pkgs
|
|
lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.poweralertd = {
|
|
Unit = {
|
|
Description = "UPower-powered power alerter";
|
|
Documentation = "man:poweralertd(1)";
|
|
After = [ "graphical-session-pre.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.poweralertd}/bin/poweralertd ${
|
|
utils.escapeSystemdExecArgs cfg.extraArgs
|
|
}";
|
|
Restart = "always";
|
|
};
|
|
};
|
|
};
|
|
}
|