16 lines
278 B
Nix
16 lines
278 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.custom.services.upower;
|
||
|
in
|
||
|
{
|
||
|
options.custom.services.upower.enable = mkOption { default = false; };
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
# https://gitlab.freedesktop.org/upower/upower
|
||
|
services.upower.enable = true;
|
||
|
};
|
||
|
}
|