Files
nix-config/modules/hardware/ssd.nix
2025-10-30 21:59:31 +01:00

15 lines
234 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.custom.hardware.ssd;
in
{
options.custom.hardware.ssd = {
enable = mkEnableOption "Enables fstrim";
};
config = mkIf cfg.enable {
services.fstrim.enable = true;
};
}