summaryrefslogtreecommitdiff
path: root/modules/nixos/hardware/ssd.nix
blob: 7279a121e15866eab7a1563341a4957899c118ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  config,
  lib,
  ...
}: let
  cfg = config.hardware.ssd;
  inherit (lib) mkEnableOption mkIf;
in {
  options.hardware.ssd.enable = mkEnableOption "ssd settings";

  config = mkIf cfg.enable {
    services.fstrim.enable = true;
  };
}