0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 00:20:32 +03:00
nixpkgs/nixos/modules/services/monitoring/hdaps.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
458 B
Nix
Raw Normal View History

2016-02-24 21:43:38 +01:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
cfg = config.services.hdapsd;
hdapsd = [ pkgs.hdapsd ];
in
{
options = {
services.hdapsd.enable = mkEnableOption ''
Hard Drive Active Protection System Daemon,
devices are detected and managed automatically by udev and systemd
'';
};
config = mkIf cfg.enable {
boot.kernelModules = [ "hdapsd" ];
2016-02-24 21:43:38 +01:00
services.udev.packages = hdapsd;
systemd.packages = hdapsd;
};
}