1
0
Fork 0
nix-configuration/modules/services/apcupsd.nix

17 lines
310 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ pkgs, config, lib, ... }:
let
cfg = config.host.services.apcupsd;
in
with lib;
{
options = {
host.services.apcupsd.enable = mkEnableOption (mdDoc "Enables apcupsd");
};
config = mkIf cfg.enable {
services.apcupsd = {
enable = true;
2024-03-02 12:58:30 -05:00
configText = builtins.readFile ./etc/apcupsd.conf;
2024-02-29 09:53:34 -05:00
};
};
}