Files
nix-config/modules/hardware/ssd.nix
2025-03-18 16:27:20 +01:00

16 lines
235 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;
};
}