nixos/extra/hardware-base.nix
2021-02-28 22:16:36 +01:00

14 lines
206 B
Nix

{ config, lib, pkgs, ... }:
{
services.smartd.enable = true;
environment.systemPackages = with pkgs; [
dmidecode
f3
hdparm
lm_sensors
pciutils
smartmontools
testdisk
];
}