1
1
Fork 0
nixos/options/custom/services/upower.nix

16 lines
280 B
Nix
Raw Normal View History

{
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;
};
}