8 lines
192 B
Nix
8 lines
192 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
services.smartd.enable = lib.mkDefault true;
|
|
|
|
environment.systemPackages = lib.optionals config.services.smartd.enable (with pkgs; [
|
|
smartmontools
|
|
]);
|
|
} |