mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
9 lines
140 B
Nix
9 lines
140 B
Nix
|
{ lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ../../hdd ];
|
||
|
|
||
|
# Hard disk protection if the laptop falls:
|
||
|
services.hdapsd.enable = lib.mkDefault true;
|
||
|
}
|