nixos/extra/hardware-base.nix
2021-06-23 00:00:05 +02:00

15 lines
219 B
Nix

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