mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
15 lines
206 B
Nix
15 lines
206 B
Nix
![]() |
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.smartd.enable = true;
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
dmidecode
|
||
|
f3
|
||
|
hdparm
|
||
|
lm_sensors
|
||
|
pciutils
|
||
|
smartmontools
|
||
|
testdisk
|
||
|
];
|
||
|
}
|