Files
nix-config/modules/hardware/ssd.nix
2024-04-17 16:33:12 +02:00

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