mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
100 lines
2.6 KiB
Nix
100 lines
2.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
inherit (lib) mkEnableOption mkIf mkOption types;
|
|
|
|
cfg = config.hardware.sata.timeout;
|
|
|
|
buildRule = d:
|
|
lib.concatStringsSep ", " [
|
|
''ACTION=="add"''
|
|
''SUBSYSTEM=="block"''
|
|
''ENV{ID_${lib.toUpper d.idBy}}=="${d.name}"''
|
|
''TAG+="systemd"''
|
|
''ENV{SYSTEMD_WANTS}="${unitName d}"''
|
|
];
|
|
|
|
devicePath = device:
|
|
"/dev/disk/by-${device.idBy}/${device.name}";
|
|
|
|
unitName = device:
|
|
"sata-timeout-${lib.strings.sanitizeDerivationName device.name}";
|
|
|
|
startScript =
|
|
pkgs.writeShellScript "sata-timeout.sh" ''
|
|
set -eEuo pipefail
|
|
|
|
device="$1"
|
|
|
|
${pkgs.smartmontools}/bin/smartctl \
|
|
-l scterc,${toString cfg.deciSeconds},${toString cfg.deciSeconds} \
|
|
--quietmode errorsonly \
|
|
"$device"
|
|
'';
|
|
|
|
in
|
|
{
|
|
meta.maintainers = with lib.maintainers; [ peterhoeg ];
|
|
|
|
options.hardware.sata.timeout = {
|
|
enable = mkEnableOption (lib.mdDoc "SATA drive timeouts");
|
|
|
|
deciSeconds = mkOption {
|
|
example = 70;
|
|
type = types.int;
|
|
description = lib.mdDoc ''
|
|
Set SCT Error Recovery Control timeout in deciseconds for use in RAID configurations.
|
|
|
|
Values are as follows:
|
|
0 = disable SCT ERT
|
|
70 = default in consumer drives (7 seconds)
|
|
|
|
Maximum is disk dependant but probably 60 seconds.
|
|
'';
|
|
};
|
|
|
|
drives = mkOption {
|
|
description = lib.mdDoc "List of drives for which to configure the timeout.";
|
|
type = types.listOf
|
|
(types.submodule {
|
|
options = {
|
|
name = mkOption {
|
|
description = lib.mdDoc "Drive name without the full path.";
|
|
type = types.str;
|
|
};
|
|
|
|
idBy = mkOption {
|
|
description = lib.mdDoc "The method to identify the drive.";
|
|
type = types.enum [ "path" "wwn" ];
|
|
default = "path";
|
|
};
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.udev.extraRules = lib.concatMapStringsSep "\n" buildRule cfg.drives;
|
|
|
|
systemd.services = lib.listToAttrs (map
|
|
(e:
|
|
lib.nameValuePair (unitName e) {
|
|
description = "SATA timeout for ${e.name}";
|
|
wantedBy = [ "sata-timeout.target" ];
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${startScript} '${devicePath e}'";
|
|
PrivateTmp = true;
|
|
PrivateNetwork = true;
|
|
ProtectHome = "tmpfs";
|
|
ProtectSystem = "strict";
|
|
};
|
|
}
|
|
)
|
|
cfg.drives);
|
|
|
|
systemd.targets.sata-timeout = {
|
|
description = "SATA timeout";
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
};
|
|
}
|