summaryrefslogtreecommitdiff
path: root/modules/nixos/hardware/ssd.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-06 14:35:58 -0500
committerseth <[email protected]>2023-11-06 14:35:58 -0500
commit868263ab2effc0536489837bdba5183623e6507f (patch)
tree57f9dfbf62494d673c4e9edad2501db608a166f9 /modules/nixos/hardware/ssd.nix
parent714634ec755cd97fb5bd95845899e10defbed09c (diff)
modules/nixos: remove hardware module
Diffstat (limited to 'modules/nixos/hardware/ssd.nix')
-rw-r--r--modules/nixos/hardware/ssd.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/nixos/hardware/ssd.nix b/modules/nixos/hardware/ssd.nix
deleted file mode 100644
index 7279a12..0000000
--- a/modules/nixos/hardware/ssd.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- 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;
- };
-}