aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/nixos/modules/services/hardware/freefall.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/modules/services/hardware/freefall.nix')
-rw-r--r--nixpkgs/nixos/modules/services/hardware/freefall.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/nixpkgs/nixos/modules/services/hardware/freefall.nix b/nixpkgs/nixos/modules/services/hardware/freefall.nix
new file mode 100644
index 00000000000..83f1e8c84f2
--- /dev/null
+++ b/nixpkgs/nixos/modules/services/hardware/freefall.nix
@@ -0,0 +1,64 @@
+{ config, lib, pkgs, utils, ... }:
+
+with lib;
+
+let
+
+ cfg = config.services.freefall;
+
+in {
+
+ options.services.freefall = {
+
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to protect HP/Dell laptop hard drives (not SSDs) in free fall.
+ '';
+ };
+
+ package = mkOption {
+ type = types.package;
+ default = pkgs.freefall;
+ defaultText = "pkgs.freefall";
+ description = ''
+ freefall derivation to use.
+ '';
+ };
+
+ devices = mkOption {
+ type = types.listOf types.str;
+ default = [ "/dev/sda" ];
+ description = ''
+ Device paths to all internal spinning hard drives.
+ '';
+ };
+
+ };
+
+ config = let
+
+ mkService = dev:
+ assert dev != "";
+ let dev' = utils.escapeSystemdPath dev; in
+ nameValuePair "freefall-${dev'}" {
+ description = "Free-fall protection for ${dev}";
+ after = [ "${dev'}.device" ];
+ wantedBy = [ "${dev'}.device" ];
+ serviceConfig = {
+ ExecStart = "${cfg.package}/bin/freefall ${dev}";
+ Restart = "on-failure";
+ Type = "forking";
+ };
+ };
+
+ in mkIf cfg.enable {
+
+ environment.systemPackages = [ cfg.package ];
+
+ systemd.services = builtins.listToAttrs (map mkService cfg.devices);
+
+ };
+
+}