mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
23 lines
423 B
Nix
23 lines
423 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 {
|
|
services.udev.packages = hdapsd;
|
|
systemd.packages = hdapsd;
|
|
};
|
|
}
|