nixos/legacy/modules/hardware-base.nix

16 lines
219 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, lib, pkgs, ... }:
{
services.smartd.enable = true;
environment.systemPackages = with pkgs; [
dmidecode
f3
hdparm
lm_sensors
2021-06-23 00:00:05 +02:00
nvme-cli
2020-11-16 21:14:46 +01:00
pciutils
smartmontools
testdisk
];
}