18f6dbe6be
patch by hpoussin via https://discourse.nixos.org/t/hdapsd-automatically-enable-the-hdapsd-kernel-module/2183
24 lines
462 B
Nix
24 lines
462 B
Nix
{ 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" ];
|
|
services.udev.packages = hdapsd;
|
|
systemd.packages = hdapsd;
|
|
};
|
|
}
|