2024-05-07 18:02:59 -04:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-29 09:53:34 -05:00
|
|
|
let
|
2024-05-07 18:02:59 -04:00
|
|
|
cfg = config.host.services.apcupsd;
|
2024-02-29 09:53:34 -05:00
|
|
|
in
|
|
|
|
with lib;
|
|
|
|
{
|
2024-05-07 18:02:59 -04:00
|
|
|
options = {
|
2024-05-21 09:22:03 -04:00
|
|
|
host.services.apcupsd = {
|
|
|
|
enable = mkEnableOption (mdDoc "Enables apcupsd");
|
|
|
|
configText = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "The configuration to pass to apcupsd.";
|
|
|
|
};
|
|
|
|
};
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.apcupsd = {
|
|
|
|
enable = true;
|
2024-05-21 09:22:03 -04:00
|
|
|
configText = cfg.configText;
|
2024-05-07 18:02:59 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|